¿Estoy programando CSS y hace un rato que no se actualiza y no es problema del hosting ya que estoy en mi escritorio dejo el codigo?
body
{
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: #240229;
}
.loader
{
position: relative;
width: 100px;
height: 100px;
border-radius: 50%;
background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
animation: animate 0.5s linear infinite;
}
.loader span
{
position: relative;
width: 100%;
height: 100%;
border-radius: 50%;
background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);
}
.loader span:nth-child(1)
{
filter: blur(5px);
}
.loader span:nth-child(2)
{
filter: blur(10px);
}
.loader span:nth-child(3)
{
filter: blur(25px);
}
.loader span:nth-child(4)
{
filter: blur(50px);
}
.loader:after
{
content: ;
position: absolute;
top: 10px;
left: 10px;
right:10px;
bottom: 10px
background: #240229;
}
2 respuestas
- LupitaLv 5hace 2 años
Generalmente cuando trabajas con css, html javascript pero sobretodo css, tienes que limpiar el cache, te recomiendo que des muchas veces al boton de recarga o f5 y sino limpia el cache del navegador que etses usando. Como? pues googlea, si es mozilla pon como limpiar cache de mozilla o asi igual para chrome o lo que uses. Espero te ayude, tu codigo css esta bien