Webデザインのこと、いろいろ

Webデザインにまつわることを自分用にメモしています。

CSS:リセット

メディアクエリ時のフォントサイズの指定

/*どのような画面でも見やすい文字に自動調整する機能(モバイル対応)*/
/* font-size */
html { font-size: 62.5%; }  /* =10px */
body { font-size: 16px; font-size: 1.6rem; }  /* =16px */
h1 { font-size: 32px; font-size: 3.2rem; }
h2 { font-size: 24px; font-size: 2.4rem; }
h3 { font-size: 20px; font-size: 2.0rem; }
ul, li, dl, dt, dd { font-size: 16px; font-size: 1.6rem }