I need it to be without ::before and ::after since those aren't supported in emails.
I'm aiming for this:
The tittle text is taken from a database so the lines must adjust to the text length.
I tried this with setting up images but there is no real way of controlling their length and I also tried with blank elements with borders but then the line goes either above or below the text not center.
What I currently got:
<tr valign="bottom">
<td>
<img border="0" vspace="0" height="1" width="40"
src="link to a picture of a white pixel" valign="MIDDLE">
</td>
<td class="subrubr" nowrap="nowrap" valign="bottom">
<a name="finnews"></a>
Title goes here
</td>
<td>
<img border="0" vspace="0" height="1" width="40"
src="link to a picture of a white pixel">
</td>
</tr>
What's the best way to do this?
EDIT: I'm looking for a solution that works with emails so this post is not a really helpful!