Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <div id="dvi1" class="div1">
  9. <ul id="ul" class="ul">
  10. <li>11</li>
  11. <li>22</li>
  12. <li>33</li>
  13. <li>44</li>
  14. </ul>
  15. </div>
  16. </body>
  17. </html>
  18.  
  19. <div>
  20. <p>This is our first paragraph</p> <!-- This one should be blue -->
  21. <p>This is our second paragraph</p> <!-- This one should be red -->
  22. </div>
  23.  
  24. p:nth-of-type(1) {
  25. color: blue;
  26. }
  27.  
  28. p:nth-of-type(2) {
  29. color: red;
  30. }
  31.  
  32. p:nth-child(1) {
  33. color: blue;
  34. }
  35.  
  36. p:nth-child(2) {
  37. color: red;
  38. }
  39.  
  40. li:nth-of-type(5n+1) {
  41. color: green;
  42. }
  43.  
  44. li:nth-of-type(3n+1) {
  45. font-weight: bold;
  46. }
  47.  
  48. li:nth-of-type(3n+2) {
  49. background: blue;
  50. }
  51.  
  52. li:nth-of-type(3n+3) {
  53. color: red;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement