CSS: Flowing List
The HTML list can have a flowing appearance.
here's normal rendering of a list:
- cat
- dog
- bird
here's flow rendering of a list:
- cat
- dog
- bird
Example
<ul class="flow4329"> <li>cat</li> <li>dog</li> <li>bird</li> </ul>
ul.flow4329 li { display: inline; }