CSS rocks
by divyanshu013
HTML
<div class="box red teal">
</div>
<div class="box teal red">
</div>
CSS
.box {
width: 100px;
height: 100px;
margin: 20px;
}
.teal {
background-color: teal;
}
.red {
background-color: red;
}
by divyanshu013
<div class="box red teal">
</div>
<div class="box teal red">
</div>
.box {
width: 100px;
height: 100px;
margin: 20px;
}
.teal {
background-color: teal;
}
.red {
background-color: red;
}