CSS esencial para todas las webs

Vista previa

Códigos

CSS

/*Quitar espacios de “gap” en widgets:*/
p {
margin-bottom: 0px;
}
/*Quitar scroll horizontal:*/
html, body{
width: 100%;
overflow-x: hidden;
}
/*Estilizar scrollbar:*/	
body::-webkit-scrollbar{
width: 15px;
}
body::-webkit-scrollbar track{
background: red;
}
body::-webkit-scrollbar-thumb{
background: #fff;
border-radius:20px;
border: 3px solid pink;
}
/*Estilizar selección de texto:*/
*::selection{
color: #ffffff;
background: red
}
/*Estilizar elementos por defecto de form elementor/*
selector .elementor-field-option{
display: flex;
gap: 10px;
align-items: center;
accent-color: red;
}
/*Quitar padding de containers full-width:/*
.e-con-full{
padding: 0px;
}