ブラウザスタイルの初期化


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. /* ブラウザスタイルの初期化 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. background-color: transparent;
  6. color: #000;
  7. font-size: medium;
  8. font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "Osaka", "MS Pゴシック", sans-serif;
  9. }
  10.  
  11. /* ブラウザスタイルの初期化 for IE6 */
  12. th, td, form {
  13. margin: 0;
  14. padding: 0;
  15. background-color: transparent;
  16. color: #000;
  17. font-size: medium;
  18. font-family: Verdana, Arial, "ヒラギノ角ゴ Pro W3", "Osaka", "MS Pゴシック", sans-serif;
  19. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.