JSFiddle - React, Tailwind, and code Playground
by AlexandrAbakumov
HTML
<div class="innerRedDiv">
<div class="text1">Test</div>
</div>
<div class="innerYellowDiv">
<div class="text2">Test</div>
</div>
CSS
.innerRedDiv {
background-color: green;
/*text-align: right;*/
/*width: 1000px;*/
}
.text1 {
color: white;
background-color: red;
margin-left: auto;
margin-right: auto;
width: 1000px;
}
.innerYellowDiv{
background-color: yellow;
}
.text2 {
color: white;
background-color: blue;
margin-left: auto;
margin-right: auto;
width: 1000px;
}