16 - Propiedades relacionadas al padding de un elemento HTML.



Problema:

Definir una clase titulo que fije los padding de izquierda y derecha con 20 pixeles y el superior e inferior en 10. Escribir un texto dentro del elemento h1.

<!DOCTYPE html>
<html>
<head>
  <title>Problema</title>
  <meta charset="UTF-8">
  <link rel="StyleSheet" href="estilos.css" type="text/css">
</head>
<body>
<h1 class="titulo">Prueba de título</h1>
</body>
</html>
.titulo {
  padding-top:10px;
  padding-bottom:10px;
  padding-right:20px;
  padding-left:20px;
  background-color:#aaaaaa;
}
Ver solución


Retornar