Ejupi contenido principal-pe Eike docs jeguatahápe
Check
in English

Ñemyatyrõ hesakãva

Pyaꞌe ha ndahasýi omopotĩ contenido flotado peteĩ mbaꞌeryru ryepýpe omoĩvo peteĩ utilidad clearfix.

Oñemopotῖ pyaꞌe floathag̃ua s oñembojoapývo .clearfix elemento túva rehe . Ikatu avei ojeporu mixin ramo.

Eipuru HTML-pe:

<div class="clearfix">...</div>

Pe mixin código fuente:

@mixin clearfix() {
  &::after {
    display: block;
    clear: both;
    content: "";
  }
}

Eipuru mixin SCSS-pe:

.element {
  @include clearfix;
}

Ko techapyrã ohechauka mbaꞌeichaitépa ikatu ojeporu pe ñemyatyrõ. Pe clearfix’ỹre pe div de envoltura ndoipysói va’erãmo’ã umi botón jerére omoheñóiva’erã peteĩ diseño oñembyaíva.

html rehegua
<div class="bg-info clearfix">
  <button type="button" class="btn btn-secondary float-start">Example Button floated left</button>
  <button type="button" class="btn btn-secondary float-end">Example Button floated right</button>
</div>