mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-03-31 11:40:23 +00:00
- Move 4.1 docs to 4.2 - Update versions everywhere to 4.1.3 with release script - Manually bump the shorthand version in package.json - Add 4.2 to the versions docs page - Update some redirects - Fix tests asset URLs - Bump Nuget and more
1 KiB
1 KiB
| layout | title | description | group | toc |
|---|---|---|---|---|
| docs | Clearfix | Quickly and easily clear floated content within a container by adding a clearfix utility. | utilities | true |
Easily clear floats by adding .clearfix to the parent element. Can also be used as a mixin.
{% highlight html %}
...
{% endhighlight %}
{% highlight scss %} // Mixin itself @mixin clearfix() { &::after { display: block; content: ""; clear: both; } }
// Usage as a mixin .element { @include clearfix; } {% endhighlight %}
The following example shows how the clearfix can be used. Without the clearfix the wrapping div would not span around the buttons which would cause a broken layout.
{% capture example %}