Funciones random
- Con cache
random() / random-item()
- Sin cache (usando
per-element)
- Con cache selectivo (usando
--id)
.container {
width: random(100px, 500px);
height: random(100px, 500px);
width: random(--id, 100px, 500px);
width: random(per-element, 100px, 500px);
width: random(100px, 500px, by 50px);
background: random-item(indigo, deeppink, tomato);
}