mixin_merging.css 663 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #test1 div {
  2. color:red;
  3. height:10px;
  4. }
  5. #test1 p { height:10px; }
  6. #test2 b {
  7. color:red;
  8. width:1px;
  9. }
  10. #test2 a, #test2 i { width:1px; }
  11. #test3 a, #test3 i { width:1px; }
  12. #test3 b {
  13. width:1px;
  14. color:red;
  15. }
  16. #test4 a {
  17. color:blue;
  18. margin:1px;
  19. }
  20. #test4 div, #test4 html { color:blue; }
  21. #test5 img, #test5 strong {
  22. padding:2px;
  23. float:right;
  24. }
  25. #test6 div a, #test6 span a {
  26. line-height:10px;
  27. color:red;
  28. }
  29. #test7 div strong {
  30. margin:1px;
  31. color:red;
  32. }
  33. #test7 div b { color:red; }
  34. #test7 span strong, #test7 span b { color:red; }
  35. #test8 a i, #test8 b i {
  36. background:red;
  37. color:red;
  38. }
  39. #test8 a s, #test8 b s {
  40. background:red;
  41. color:blue;
  42. }