Guest User

Untitled

a guest
Jul 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. ##クラス、idセレクタ
  2. ```html
  3. <article>
  4. <h1>タイトル</h1>
  5. <div>
  6. <p>本文</p>
  7. </div>
  8. </article>
  9. ```
  10. これを
  11. ```html
  12. <div>
  13. <h2>タイトル</h2>
  14. <div>
  15. <p>本文</p>
  16. </div>
  17. </div>
  18. ```
  19. へと、変更したくなった時に備えて、CSSは、
  20. ```css
  21. .entry-title {
  22. border-bottom: 2px solid #000;
  23. margin-bottom: 1em;
  24. padding: 10px;
  25. font-size: 24px;
  26. font-weight: bold;
  27. }
  28. ```
  29. としておく。
  30. ```css
  31. article h1 {
  32. border-bottom: 2px solid #000;
  33. margin-bottom: 1em;
  34. padding: 10px;
  35. font-size: 24px;
  36. font-weight: bold;
  37. }
  38. ```
  39. とかはダメ。つまり、HTMLタグを使ったセレクタを避ける。
Add Comment
Please, Sign In to add comment