Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> body {background-color: #ccc;} .height-normal {height: auto;} .height-big {height: 100px;} </style> </head> <body> <h2>Beispiel für die Eigenschaft</h2> <p>Hier ist height auf "auto" eingestellt.</p> <img class="height-normal" src="/uploads/media/default/0001/01/003e5c463668d174ab70bea245c192d81901a4a6.png"><br> <hr> <p>Die Höhe für dieses Bild ist durch "100px" definiert.</p> <img class="height-big" src="/uploads/media/default/0001/01/003e5c463668d174ab70bea245c192d81901a4a6.png"> </body> </html>