Is it possible in pure css, that is without adding additional html tags, to make a line break like <br>
? I want the line break after the <h4>
element, but not before:
HTML
<li>
Text, text, text, text, text. <h4>Sub header</h4>
Text, text, text, text, text.
</li>
CSS
h4 {
display: inline;
}
I have found many questions like this, but always with answers like "use display: block;", which I can't do, when the <h4>
must stay on the same line.
? – Philip Kirkbride Jun 07 '12 at 14:34