I'm CSSing a layout, and the design has used lots of |'s in between two elements that can change size. I.E.
John | Logout
Where John is on the left of the div in question, and Logout is on the right. With the name being dynamic and changeable, is there any way I can guarantee the line will position in the middle of each? Should I perhaps quit the CSS approach and just use a little JavaScript function?
<div class="top">
<p class="name">Welcome Jeremy Louelen-Boxen</p>
<p>|</p>
<p class="logout"><a href="#">Logout</a></p>
</div>
Edit: For some more detail, so the line will appear in the middle of the two elements, one (or both are changing size)
p | logout
john | logout
david | logout
jonathonan | logout
reallylongname | logout
Border right doesn't work as it is a static distance from the element, i.e. the padding on the element before the border needs to change depending on the number of characters included.
Thanks for your help all, Dave