Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<html>
<head>
<title>Reference: CSS Lists: 'list-style-image' takes precedence over 'list-style-type: none'</title>
<link rel="author" title="Emil A Eklund" href="mailto:eae@chromium.org">
<style>
li {
list-style-image: url('../../images/green-16x16.png');
}
::marker {
font-family: inherit;
}
</style>
</head>
<body>
<ul>
<li>Should have a green square list marker.</li>
</ul>
</body>
</html>