JSFiddle - React, Tailwind, and code Playground
by Ian Roberts
CSS
#stars {
background: url('http://placehold.it/10x10');
}
JavaScript
// random divs
var w = 10, h = 10, leftOffset = 0, topOffset = 0, leftDeviation = 1000, topDeviation = 1000
for(i=0;i<500;i++)
$('<div id="stars" />').css({
left:(i*w+leftOffset+Math.round(Math.random()*leftDeviation)),
top:(topOffset+Math.round(Math.random()*topDeviation)),
opacity:.6,width:w,height:h,backgroundColor:'grey',position: 'fixed'}).appendTo('body')