JSFiddle - React, Tailwind, and code Playground
by Jeroen Veldhuijzen
HTML
<div class="stars"></div>
CSS
.stars
{
position: absolute;
top: 0;
left: 0;
right: 0;
height: 320px;
background: url('http://placehold.it/200x200') left center repeat-x;
}
@media screen and (max-width: 600px) {
.stars
{
position: absolute;
top: 0;
left: 0;
right: 0;
height: 320px;
background: url('http://placehold.it/200x200'),url('http://placehold.it/200x200');
background-position: left, right;
background-repeat: no-repeat, no-repeat;
}
}