blob: 82e17a8a2f7e94bf883cf93505d8a8edad255d64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
.foo::marker { color: red }
</style>
</head>
<body>
<ul>
<li class="foo">one</li>
<li>two</li>
</ul>
</body>
</html>
|