Source Code: (back to article)
<!DOCTYPE html>
<html>
<head>
<title>Titre du document</title>
<style>
.margin-top {
margin-top: 100px;
}
</style>
</head>
<body>
<h2>Exemple de la propriété margin-top</h2>
<p>Aucune marge n'est définie.</p>
<p class="margin-top"> Marge 100px est spécifiée en haut pour ce texte.</p>
</body>
</html>