blob: 3d4771bd658a1625d1ca7655e174071b669f32cb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// http://jes.st/2013/ie7s-css-breaking-content-counter-bug/
#foo:before {
content: counter(item, ".") ": ";
}
#bar:before {
content: counter(item,".");
}
#fu:before {
content: counter(item);
}
|