Textformatierung zur Einrückung
bearbeitet von
Hallo Rolf,
yup, geht:
~~~html
<section>
<header>zum Beispiel:</header>
<ul>
<li>Ein Ring sie zu knechten</li>
<li>Sie alle zu finden<br>Ins Dunkel zu treiben</li>
<li>Und ewig zu binden</li>
</ul>
</section>
~~~html
~~~css
section { display: flex; }
section header { margin-right: 1em; }
ul, li { margin: 0; padding: 0; list-style-type: none }
~~~
Weiteres Styling nach Bedarf :)
Rolf