
No se centra bien el texto del lado vertical, ayuda
Publicado por Cristhian (2 intervenciones) el 13/02/2022 17:14:18
[code HTML]
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="error.css">
</head>
<body>
<div class="barra">
<a href="">INICO</a>
<a href="">PRODUCTOS</a>
<a href="">ENVIOS</a>
<a href="">NOSOTROS</a>
</div>
</body>
[/code]
[code CSS]
.barra {
display: flex;
background-color: yellow;
width: 100%;
height: 70px;
justify-content: space-around;
align-content: center;
}
.barra a {
color: white;
font-family: calibri;
font-size: 30px;
background-color: purple;
width: 25%;
margin: 2px 1px 2px 1px;
text-decoration: none;
text-align: center;
}
[/code]
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="error.css">
</head>
<body>
<div class="barra">
<a href="">INICO</a>
<a href="">PRODUCTOS</a>
<a href="">ENVIOS</a>
<a href="">NOSOTROS</a>
</div>
</body>
[/code]
[code CSS]
.barra {
display: flex;
background-color: yellow;
width: 100%;
height: 70px;
justify-content: space-around;
align-content: center;
}
.barra a {
color: white;
font-family: calibri;
font-size: 30px;
background-color: purple;
width: 25%;
margin: 2px 1px 2px 1px;
text-decoration: none;
text-align: center;
}
[/code]
Valora esta pregunta


0