I'm having trouble aligning my <ol>
numbers vertically at the top of the list. I've created a sample on CodePen.
ol {
list-style-type: decimal-leading-zero;
font-size: 11px;
}
a {
font-size: 80px;
text-decoration: none;
}
<nav>
<ol>
<li><a href="#">Header One</a><span>This is some text, don't move me</span></li>
<li><a href="#">Header Two</a><span>This is some text, don't move me</span></li>
<li><a href="#">Header Three</a><span>This is some text, don't move me</span></li>
<li><a href="#">Header Four</a><span>This is some text, don't move me</span></li>
</ol>
</nav>