“Was macht ClearFix für Floats in CSS?” Code-Antworten

Was macht ClearFix für Floats in CSS?

/* A clearfix is a way for an element 
to clear its child elements automatically without any additional markup.
The clearfix property is generally used in float layouts where elements 
are floated to be stacked horizontally. ... The clearfix property allows
a container to wrap its floated children.
*/

.clearfix {
  overflow: auto;
}
Expensive Emu

CSS Clearfix für Schwimmkörper mit Anzeigetabelle und beide löschen

.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>
Expensive Emu

Ähnliche Antworten wie “Was macht ClearFix für Floats in CSS?”

Fragen ähnlich wie “Was macht ClearFix für Floats in CSS?”

Weitere verwandte Antworten zu “Was macht ClearFix für Floats in CSS?” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen