Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Test: ::marker pseudo elements styled with 'content' property</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="match" href="marker-content-008-ref.html">
<style>
li {
list-style-position: outside;
}
#t1 > li::marker { content: "a" "b"; }
#t2 > li::marker { content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAMCAIAAAD3UuoiAAAAGklEQVQoz2Nk%2BP%2BfgRqAiYFKYNSgUYOGp0EA%2BQMCFrJdTgsAAAAASUVORK5CYII%3D); }
li::before {
content: "c";
}
li::after {
content: "d";
}
span { font-size: 32pt; }
</style>
</head>
<body>
<ol id="t1"><li></li><li>B</li><li><span>C</span></li></ol>
<ol id="t2"><li></li><li>B</li><li><span>C</span></li></ol>
</body>
</html>