Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> .balance { column-count: 4; column-rule: 1px solid black; column-fill: balance; } </style> </head> <h2>Beispiel für die Eigenschaft column-fill</h2> <body> <p class="balance"> Das ist ein Text, der in mehrere Teile aufgeteilt ist. Die CSS-Eigenschaft column-fill wird verwendet, um die Inhalte gleichmäßig auf alle Bereiche zu verteilen. </p> </body> </html>