comment.css 255 B

123456789101112131415161718192021222324252627282930313233
  1. /**
  2. * comment
  3. */
  4. .class
  5. {
  6. padding:10px; }
  7. /*comment*/
  8. .foo{color:red
  9. }
  10. /*
  11. at rule
  12. */
  13. @media only screen {
  14. /* inner at rule comment */
  15. .foo { display: none; }
  16. /*
  17. * another comment
  18. */
  19. /* in a row */
  20. .bar {
  21. color:yellow;
  22. }
  23. }