HTML, CSS, JavaScript

HTML文書でhタグに自動連番見出しを振る方法

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…

HTML 画像のドラッグ&ドロップ

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>

CSSインライン要素の縦位置を中央寄せ

よく忘れてしまうので備忘録。ブロック内に配置するイメージの縦位置を中央に寄せるには、テーブルを使うのがてっとり早い。 imgの親の親ブロックのスタイルに `display:table` を指定する。 imgの親ブロックのスタイルに `display:table-cell` と `vertical…