Please, take a look to this piece of code:
<span class="something">
<label>test1</label><br/>
<label>test2</label><br/>
<label>test3</label>
</span>
This will create a vertical list of labels. Is possible to do this without the <br> tags using CSS? It is, is possible to show the same vertical aligned label list with this HTML code?:
<span class="something">
<label>test1</label>
<label>test2</label>
<label>test3</label>
</span>
<ul>with<li>elements in it – Pekka 웃 Mar 14 '12 at 20:40<ul>and<li>elements, which is just as bad as abusing tables. – Mr Lister Mar 14 '12 at 20:46