blob: 4a1861941e64b628306df127b9a91d4c484c634b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Source: http://test.csswg.org/suites/css2.1/20110323/html4/before-after-dynamic-restyle-001.htm */
body:before {
content:"Before";
border:inherit;
}
.cl:after {
display:block;
content:"After";
}
|