I am in search of a way to align rows utilizing the style property.
The following HTML code is being transformed using XSL:
<span style="white-space: pre; font-size: 8pt; font-family: Lucida console, Courier "><40 : item1</span><br>
<span style="white-space: pre; font-size: 8pt; font-family: Lucida console, Courier ">40-80 : item2 </span><br>
I am trying to figure out how to align items like so:
<40 : item1
40-80 : item2
At the moment, it looks like this:
<40 : item1
40-80 : item2
Is there a possibility to achieve this alignment using the style property?
This task needs to be accomplished on Internet Explorer version 6 and above.