CSS リセットを使用して、一般的に使用される項目をリセットしました。コードは次のとおりです。
html, body, div, h1, h2, h3, h4, ul, ol, li, form, input, fieldset, textarea {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
}
ul {list-style: none outside none;}
img, fieldset {border: 0;}
h1, h2, h3, h4 {font-weight: normal;}
em {font-style: italic;}
strong {font-weight: bold;}
YUI と Meyer のリセットがあるのは知っていますが、私はこれを使用しています。
現在、私が経験している問題は、送信ボタンを正常に表示できないことです。もちろん、リストからを削除してinput
終了することもできますが、将来必要になる可能性があるため、元に戻す方法を知りたいです。