CSS: Flowing List

By Xah Lee. Date: . Last updated: .

The HTML list can have a flowing appearance.

here's normal rendering of a list:

here's flow rendering of a list:

Example

<ul class="flow4329">
<li>cat</li>
<li>dog</li>
<li>bird</li>
</ul>
ul.flow4329 li {
display: inline;
}

HTML list