Could you please review the following code snippet:
<span class="something">
<label>test1</label><br/>
<label>test2</label><br/>
<label>test3</label>
</span>
Instead of using <br>
tags, is there a way to achieve the same vertical list layout using CSS with this HTML code?:
<span class="something">
<label>test1</label>
<label>test2</label>
<label>test3</label>
</span>