Guest User

Untitled

a guest
Nov 17th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>선택자 문법 사용하기</title>
  6. <style>
  7. #p_tag+p{
  8. color: red;
  9. }
  10. .table th{
  11. color: red;
  12. }
  13. .table td{
  14. color: blue;
  15. }
  16. .table > tbody > tr + tr > td{
  17. color:yellow;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div>
  23. <h1>제목</h1>
  24. <div>
  25. <p id="p_tag">문단</p>
  26. <p>문단</p>
  27. </div>
  28. <div>
  29. <table class="table">
  30. <thead>
  31. <tr>
  32. <th>제목1</th>
  33. <th>제목2</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. <tr>
  38. <td>본문1</td>
  39. <td>본문2</td>
  40. </tr>
  41. <tr>
  42. <td>본문3</td>
  43. <td>본문4</td>
  44. </tr>
  45. </tbody>
  46. </table>
  47. </div>
  48. </div>
  49. </body>
  50. </html>
Add Comment
Please, Sign In to add comment