Advertisement
ndburrus

Prioritize One Style Over Another @johncox48

Aug 9th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. // @johncox48
  2. // Prioritize One Style Over Another
  3.  
  4.  
  5. <style> // within the style tag, we need to define .pink-text
  6. // the style tag should only have .pink-text & body included (within the style tags)
  7.  
  8. body {
  9. background-color: black;
  10. font-family: Monospace;
  11. color: green;
  12. }
  13.  
  14. // remove h1 {
  15. // remove color: pink;
  16. // remove }
  17.  
  18. </style>
  19.  
  20. <h1 class="pink-text">Hello World!</h1>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement