JSFiddle - React, Tailwind, and code Playground
by kangismet
HTML
<div id="box">
<span class="contoh1">CONTOH1</span><span class="contoh2">CONTOH2</span><span class="contoh3">CONTOH3</span>
</div>
CSS
#box {
background:white;
border: 1px solid #ddd;
font-size:22px;
padding:15px 0;
text-align:center;
font-family: Arial, sans-serif;
}
.contoh1, .contoh2, .contoh3 {
margin-right:20px
}
.contoh1 {
color:green;
}
.contoh2 {
color:red;
visibility:hidden;
}
.contoh3{
color:blue;
}