LoginSignup
1
0

More than 3 years have passed since last update.

【初投稿】リセットCSSを書き記す

Last updated at Posted at 2021-02-22

昨日から初めてのWEB開発をスタートさせました!
にしても初めてはわからないことばかり、、、、

今回はリセットCSSを設定し忘れ、意味不明なCSSが反映されている方向けに
コピペで使えるリセットCSSを書き記したいと思います。

▼リセット!

*{
margin: 0;
padding: 0;
}
html{
font-size: 16px;
}
body {
font-family: Verdana, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
header, footer, nav, menu, article, aside, section, details, figcaption, figure{
display: block;
}
ul, ol {
list-style: none;
}
table {
border-collapse: collapse;
}
img {
vertical-align: bottom;
}
a img {
border: none;
}
strong {
font-weight: normal;
}
i{
font-style: normal;
}

以上!どこから拾ってきたソースコードなのか、後日記載できればと思います!
では、これにて一旦ドロンです

マイベストフレンド @norinori_stu2 ありがとう!

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0