If i had a list like the following:
<ul>
<li>Alex</li>
<li>James</li>
<li>Thomas</li>
<li>Is</li>
<li>Asking</li>
<li>Questions</li>
<li>On</li>
<li>Stackoverflow</li>
</ul>
The default will be displayed like:
* Alex
* James
* Thomas
* Is
* Asking
* Questions
* On
* Stackoverflow
What CSS would i use to get it to display like:
* Alex * Questions
* James * On
* Thomas * Stackoverflow
* Is
* Asking
Thanks in advance...