CSS: Causing line breaks for inline elements without <br />
Posted
by cbp
on Stack Overflow
See other posts from Stack Overflow
or by cbp
Published on 2010-04-15T05:08:56Z
Indexed on
2010/04/15
5:13 UTC
Read the original article
Hit count: 263
css
How can I have each of these a elements break on to new lines, but keeping them as display=inline and without br tags?
<div>
<a href="element1">Element 1</a>
<a href="element1">Element 2</a>
<a href="element1">Element 3</a>
</div>
© Stack Overflow or respective owner