HTML, CSS, JavaScript
body { counter-reset: chapter; counter-reset: section; counter-reset: detail; } h1 { counter-reset: chapter; } h2 { counter-reset: section; } h3 { counter-reset: detail; } h2:before { content: counter(chapter) ". "; counter-increment: chap…
HTML5のFileReaderを使ってクライアントのローカル画像をドラッグアンドドロップ → 表示するサンプルコード <html> <head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script> <script> $(function() { if (!window.FileReader) { alert("not supported File API."); return false; } var droparea = $("#xxx"); var cancelEvent …</head></html>
よく忘れてしまうので備忘録。ブロック内に配置するイメージの縦位置を中央に寄せるには、テーブルを使うのがてっとり早い。 imgの親の親ブロックのスタイルに `display:table` を指定する。 imgの親ブロックのスタイルに `display:table-cell` と `vertical…