I tried but <pre> only works for text.

What I want to do is adding 100 space between two lables like below:

<asp:Label ID="lbl1" runat="server" /> <asp:Label ID="lbl2" runat="server"/>

If I use <pre> will make lbl2 in next line which I do not like it.

<asp:Label ID="lbl1" runat="server" />
<pre><asp:Label ID="lbl2" runat="server"/></pre>