My current setup is similar to the following.
<div width="100%">
<span width="33%">FIRSTNAME</span>
<span width="33%">|LASTNAME</span>
<span width="33%">|CITY</span>
</div>
When executed, it appears as follows:
FIRSTNAME|LASTNAME|CITY
However, I am looking to achieve the layout below: (Full page width with each span element occupying 33% of the main DIV)
FIRSTNAME |LASTNAME |CITY
Is there a way someone can suggest to accomplish this?