Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any way to generate a random number within a given range using only CSS?

For example, something like:

div {
   margin-left: random(-100, 100);
}
like image 933
Alexcamostyle Avatar asked Dec 07 '25 18:12

Alexcamostyle


1 Answers

There is currently no way to do this in pure CSS, however if you're using a CSS pre-processor, such as LESS, then you can do the following:

@randomMargin: `Math.round(Math.random() * 100)`;

div {
  margin-left: ~'@{randomMargin}px';
}

The reason this works is because LESS will evaluate JavaScript expressions.

If you want to break it into a random mixin/function, you could use:

.random(@min, @max) {
  @random: `Math.round(Math.random() * (@{max} - @{min}) + @{min})`;
}

div {
  .random(-100, 100);
  margin-left: ~'@{random}px';
}

Which will compile with a different margin-left value each time:

div {
  margin-left: 18px;
}

However, I am not sure how practical this would be in a production environment since your CSS should already be compiled/minified rather than compiled on the fly. Therefore you should just use straight JavaScript in order to achieve this.

like image 89
Josh Crozier Avatar answered Dec 09 '25 13:12

Josh Crozier