Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> body {background-color: #ccc;} .height-normal {height: auto;} .height-big {height: 100px;} </style> </head> <body> <h2>Exemple de la propriété height </h2> <p>Ici la hauteur est définie à "auto"</p> <img class="height-normal" src="/uploads/media/default/0001/01/003e5c463668d174ab70bea245c192d81901a4a6.png"><br> <hr> <p>La hauteur de cet image est définie à "100px".</p> <img class="height-big" src="/uploads/media/default/0001/01/003e5c463668d174ab70bea245c192d81901a4a6.png"> </body> </html>