Answers for "/* clear floats after the columns */ section::after { content: ""; display: table; clear: both; }"

CSS
0

css clearfix for floats with display table and clear both

.group:after {
  content: "";
  display: table;
  clear: both;
}

<div class="group">
  <div class="is-floated"></div>
  <div class="is-floated"></div>
  <div class="is-floated"></div>
</div>
Posted by: Guest on April-28-2021

Code answers related to "/* clear floats after the columns */ section::after { content: ""; display: table; clear: both; }"

Browse Popular Code Answers by Language