css rocks

by divyanshu013

HTML

<div class="box blue pink"></div>

<div class="box pink blue"></div>

CSS

.box {
  width: 100px;
  height: 100px;
  margin: 10px;
}

.blue {
  background-color: dodgerblue;
}

.pink {
  background-color: hotpink;
}