Advertisement
Guest User

Untitled

a guest
Sep 26th, 2013
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. .bold { font-weight: bold;}
  2. .color1 {color: white;}
  3.  
  4. .boldColor {.bold; .color1;}
  5.  
  6. where .boldColor is effectively
  7.  
  8. .boldColor {font-weight:bold; color:white;}
  9.  
  10. .bold, .boldColor {
  11. font-weight: bold;
  12. }
  13.  
  14. .color1, .boldColor {
  15. color: white;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement