23 - Propiedades relacionadas al margin (FORMATO RESUMIDO)



Problema:

Confeccionar una página con títulos de nivel h1,h2 y h3. Definir distintos márgenes para cada lado.

<!DOCTYPE html>
<html>
<head>
  <title>Problema</title>
  <meta charset="UTF-8">
  <link rel="StyleSheet" href="estilos.css" type="text/css">
</head>
<body>
<h1>Titulo Nivel 1</h1>
<h2>Titulo Nivel 2</h2>
<h3>Titulo Nivel 3</h3>
</body>
</html>
h1 {
  margin: 1px 2px 3px 4px;
}

h2 {
  margin: 2px 4px 8px 12px;
}

h3 {
  margin: 4px 8px 12px 16px;
}
Ver solución


Retornar