CSS: Flowing List
- some
- thing
The HTML list can have a flowing appearance.
Here is a flowing list.
- cat
- dog
- bird
Here is HTML:
<ul class="flow413"> <li>cat</li> <li>dog</li> <li>bird</li> </ul>
Here is CSS:
ul.flow413 li { display: inline; }
You can also use display:inline-block
.