JSFiddle - React, Tailwind, and code Playground
by fatihhayri
HTML
<div id="esnekKutuKapsul">
<div class="esnekKutu">Esnek Kutu1</div>
<div class="esnekKutu">Esnek Kutu2</div>
<div class="esnekKutu">Esnek Kutu3</div>
</div>
CSS
#esnekKutuKapsul{
display: box;
display:-webkit-box;
display:-moz-box;
width:600px;
height:300px;
border:1px solid #03C;
box-orient:horizantal;
-moz-box-orient:horizantal;
-webkit-box-orient:horizantal;
box-align: center;
-webkit-box-align: center;
-moz-box-align: center;
}
.esnekKutu{
background-color:#999999;
width:150px;
height:150px;
margin-right:15px;
}