JSFiddle - React, Tailwind, and code Playground
by azizasiri
HTML
<!DOCTYPEhttps://jsfiddle.net/azizasiri/euxvdrz6/4/#update html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<div class="container">
<div class="n one">
</div>
<div class="n two">
</div>
<div class="n three">
</div>
<div class="n four">
</div>
</div>
</body>
</html>
CSS
@media screen and (min-width: 380px){
.container{
display: flex;
}
.n{
width: 25%;
}
.one{
background-color:blue;
}
.two{
background-color:red;
}
.three{
background-color:orange;
}
.four{
background-color:black;
}
}