1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- .test1 { display:block;}
- html .clear-block {
- height: 1%;
- }
- .clear-block {
- display: block;
- font:italic bold 12px/30px Georgia, serif;
- }
- .test2 { display:block; }
- .bkslshv1 { background-color: #C00; }
- .test3 { display:block; }
- .test4 { display:block;}
- .comment-in-double-quotes:before {
- content: "/* ";
- }
- .this_rule_must_stay {
- color: #F00;
- background-color: #FFF;
- }
- .comment-in-double-quotes:after {
- content: " */";
- }
- .comment-in-single-quotes:before {
- content: '/*';
- }
- .this_rule_must_stay {
- color: #F00;
- background-color: #FFF;
- }
- .comment-in-single-quotes:after {
- content: '*/';
- }
- .comment-in-mixed-quotes:before {
- content: '"/*"';
- }
- .this_rule_must_stay {
- color: #F00;
- background-color: #FFF;
- }
- .comment-in-mixed-quotes:after {
- content: "'*/'";
- }
- .comment-in-quotes-with-escaped:before {
- content: '/* \" \' */';
- }
- .this_rule_must_stay {
- color: #F00;
- background-color: #FFF;
- }
- .comment-in-quotes-with-escaped:after {
- content: "*/ \" \ '";
- }
|