Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> div { height: 60px; background-color: #1c87c9; color: #eee; } p { height: 30px; background-color: #8ebf42; color: #eee; } </style> </head> <body> <h2>Beispiel für die Eigenschaft hight</h2> <div>Die Höhe dieses div-Elements wird auf "60px" eingestellt.</div> <p>Die Höhe dieses Absatzes ist auf "30px" eingestellt.</p> </body> </html>