I'm fairly new to HTML and CSS, so I'm finding it difficult to align all semicolons like in the screenshot provided.
PSD Preview:
This is my current HTML markup
<ul>
<li>Name <span>: John Doe</span></li>
<li>Age <span>: 30.30.30</span></li>
</ul>
Here is the corresponding CSS
li span {
padding-left: 20px;
}
The outcome can be seen in the screenshot below:
What would be the appropriate HTML markup and CSS to achieve this alignment?