I have a list as follow:
<ul>
<li>1<li>
<li>2<li>
<li>3<li>
<li>4<li>
<li>5<li>
<li>6<li>
<li>7<li>
<li>8<li>
<li>9<li>
</ul>
they appear on output as :
1
2
3
4
5
6
7
8
9
how can I style them to show up as:
1 2
3 4
5 6
7 8
9
I need a solution which works on IE and I am happy to use JQuery.