Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. body
  2. {
  3. font-family: Helvetica;
  4. }
  5.  
  6. h1
  7. {
  8. text-align: center;
  9. color: red;
  10. }
  11.  
  12. h2
  13. {
  14. text-decoration: underline;
  15. }
  16.  
  17. section>h2
  18. {
  19. color: green;
  20. }
  21.  
  22. article>h2
  23. {
  24. color: blue;
  25. }
  26.  
  27. h2 + p
  28. {
  29. color: red;
  30. font-style: italic;
  31. }
  32.  
  33. h1 ~ p
  34. {
  35. color: purple;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement