Skip to content

Instantly share code, notes, and snippets.

@externvoid
Last active July 23, 2018 01:20
Show Gist options
  • Select an option

  • Save externvoid/894e27b8d24442daf1e57b620fe0f839 to your computer and use it in GitHub Desktop.

Select an option

Save externvoid/894e27b8d24442daf1e57b620fe0f839 to your computer and use it in GitHub Desktop.
CSSの設計書、を読んで!

クラス、idセレクタ

<article>
  <h1>タイトル</h1>
  <div>
  <p>本文</p>
  </div>
</article>

これを

<div>
  <h2>タイトル</h2>
  <div>
  <p>本文</p>
  </div>
</div>

へと、変更したくなった時に備えて、CSSは、classを使って

.entry-title {
  border-bottom: 2px solid #000;
  margin-bottom: 1em;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
}

としておく。

article h1 {
  border-bottom: 2px solid #000;
  margin-bottom: 1em;
  padding: 10px;
  font-size: 24px;
  font-weight: bold;
}

とかはダメ。つまり、HTMLタグを使ったセレクタを避ける。

スタイルの取り消しは使わない

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment