Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<meta charset="utf-8">
<title>CSS Lists Test - check that the line height is the same between different forms of ::markers</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="match" href="list-style-type-decimal-line-height-ref.html">
<style>
div {
display: grid;
grid-template-columns: 100px 100px auto;
align-items: start;
background: red;
}
li {
line-height: 100%;
counter-set: list-item 1;
}
ol {
margin: 0;
padding: 0;
padding-left: 40px;
background: green;
}
ol:nth-child(2) > li {
list-style-type: "1. ";
}
ol:nth-child(3) > ::marker {
content: counter(list-item) ". ";
}
</style>
<div>
<ol>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ol>
<ol>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ol>
<ol>
<li>foo</li>
<li>bar</li>
<li>baz</li>
</ol>
</div>