Svetlana_Ovsjanikova

html_css

Sep 17th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. body{
  2. background-color: grey;
  3. }
  4.  
  5. div{
  6. color: green;
  7. }
  8.  
  9. p:first-of-type{
  10. color: green;
  11. }
  12.  
  13. p.red-p{
  14. color: red;
  15. }
  16.  
  17. p:nth-of-type(3){
  18. color: green;
  19. }
  20.  
  21. p.blue-p{
  22. color: blue;
  23. }
  24.  
  25. p.blue-p span{
  26. color: yellow;
  27. }
  28.  
  29. p:nth-of-type(5){
  30. color: green;
  31. }
  32.  
  33. p:nth-of-type(5) strong{
  34. color:pink;
  35. }
  36.  
  37. p[data-foo]{
  38. color: blueviolet;
  39. }
  40.  
  41. p.super-strange-paragraph span:hover{
  42. color: red;
  43. }
Add Comment
Please, Sign In to add comment