AkbarRahmankulov
8/25/2018 - 2:28 PM

Clearing floats

Clearing floats

/*.group added to the parent element containing floated objects*/
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group {
  *zoom: 1;
}