14 - Propiedades relacionadas al borde de un elemento HTML (border-width, border-style, border-color)



Problema:Inicializar los elementos HTML h1,h2 y h3 con bordes de 2 pixeles, color azul y diferentes estilos para cada uno. Crear una página HTML que los utilice.

Ej:
h1 {
  border-width:2px;
  border-style:solid;
  border-color:#0000ff;
}
<!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 {
  border-width:2px;
  border-style:solid;
  border-color:#0000ff;
}

h2 {
  border-width:2px;
  border-style:dashed;
  border-color:#0000ff;
}

h3 {
  border-width:2px;
  border-style:dotted;
  border-color:#0000ff;
}
Ver solución


Retornar