COMO ELIMINAR ESPACIOS VACIOS A LOS COSTADOS EN CAJAS?
Publicado por superuser (1 intervención) el 28/04/2020 19:30:18
Este es mi codigo, use la etiqueta <section> pero me deja espacios vacios a los costados nose que esta mal, quien puede arreglarlo para que el ancho sea del 100%?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.gradient
{
display: flex;
position:all;
text-align: center;
flex-direction: column;
justify-content: flex-end;
float: bottom;
height: 400px;
width: 100%;
background:linear-gradient(-25deg,#09136A,#02108E,indigo,purple);
align-items:bottom;
padding: 40px;
top: 0px;
bottom: 0;
left: 0;
right: 0;
margin-top: -9%;
margin-bottom: -10%;
margin-left: 0%;
margin-right: 0%;
box-sizing: border-box;
outline-width: 100px;
}
Valora esta pregunta


-1