tenfourfox/layout/reftests/bugs/368622-1.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

22 lines
302 B
HTML

<!DOCTYPE html>
<title>::before { display: inline-block; }</title>
<style>
ul li {
list-style-type: none;
counter-increment: item;
}
ul li::before {
content: counter(item);
display: inline-block;
width: 3em;
}
ul {
margin-left: 3em;
padding-left: 0;
}
</style>
<ul>
<li>Foo
<li>Bar
</ul>