8月 27
以前、CSS ブラウザスタイルの初期化について、以下のように書いてますということで、こちらのページで紹介してたのですが、
* {
margin: 0;
padding: 0;
font-size: 1.0em;
font-style: normal;
font-weight: normal;
border-style: none;
}
これでは、フォームのスタイルもリセットされてしまうため、以下に新しく書き直しました。
* {
margin: 0;
padding: 0;
font-size: 1.0em;
font-style: normal;
font-weight: normal;
}
img {
border-style: none;
}
以下は、上記内容の CSS ファイルです。
以下、参考にさせてもらったサイトです。