aboutsummaryrefslogtreecommitdiff
path: root/docs/utilities
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-11-27 17:05:29 -0800
committerGitHub <[email protected]>2016-11-27 17:05:29 -0800
commit869bd23937448fdcbae37c1062d373ef3ae7722a (patch)
treebcbda291440c2c41dc73851aa596c0300919929f /docs/utilities
parent585516db95c6528c396ef33c59f99c4f8bb8b42e (diff)
downloadbootstrap-869bd23937448fdcbae37c1062d373ef3ae7722a.tar.xz
bootstrap-869bd23937448fdcbae37c1062d373ef3ae7722a.zip
Update clearfix mixin (#21224)
* Update clearfix to use block instead of table display (also reorder properties for linting) * update docs snippet for clearfix mixin—was apparently still using Less syntax and had old clearfix hack (even before the block change in this PR)
Diffstat (limited to 'docs/utilities')
-rw-r--r--docs/utilities/clearfix.md11
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/utilities/clearfix.md b/docs/utilities/clearfix.md
index a023a79aa..49410df09 100644
--- a/docs/utilities/clearfix.md
+++ b/docs/utilities/clearfix.md
@@ -12,13 +12,10 @@ Easily clear `float`s by adding `.clearfix` **to the parent element**. Utilizes
{% highlight scss %}
// Mixin itself
-.clearfix() {
- &:before,
- &:after {
- content: " ";
- display: table;
- }
- &:after {
+@mixin clearfix() {
+ &::after {
+ display: block;
+ content: "";
clear: both;
}
}