추가 html 태그를 추가하지 않고 순수한 CSS에서 줄 바꿈을 만들 수 <br>
있습니까? <h4>
요소 뒤에서 줄 바꿈을 원 하지만 이전 은 원하지 않습니다.
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.