CSS

CSS 中央寄せ

領域を中央寄せ(divの枠自体を中央寄せする)
div {
margin: 0 auto;
}

テキスト・画像を中央寄せ
親要素に text-align:center 
div {
text-align:center
}

-CSS