2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【CSS】リセットCSSについて

Posted at

はじめに

学習したことを自分用の参考書のようにまとめていきます。

リセットCSSについて

同じh1タグだとしても、GoogleChromeやSafariなどブラウザごとに表示されるサイズが違ってきます。
その状態でコーディングをしていくと表示が崩れてしまう可能性が出てきます。

なので、まずリセットCSSで表示をリセットしてからコーディングをすることで、どのブラウザでも同じように表示できるようになります。

index.html
<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>タイトル</title>

  <!-- リセットCSS -->
  <link rel="stylesheet" href="css/reset.css">
  <!-- style.css -->
  <link rel="stylesheet" href="css/style.css">
</head>

<body>
</body>

</html>

"reset.css" と "style.css" の順番を逆にしないこと。
逆にしてまうと全てのスタイルがリセットされてなかったことになります笑

さいごに

いかがだったでしょうか。

他にもいろいろな記事を書いているのでぜひ読んでいただけたら嬉しいです。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?