aboutsummaryrefslogtreecommitdiff
path: root/assets/css/bootstrap/mixins/_clearfix.scss
diff options
context:
space:
mode:
authorMaZderMind2014-10-17 16:06:42 +0200
committerMaZderMind2014-10-17 16:06:42 +0200
commit0bf0647032ff6f2d6f50b21dfe1f7e3f0837c834 (patch)
treecc94f8a1b54d5ec5e44b6c024e599ef59de9d0f5 /assets/css/bootstrap/mixins/_clearfix.scss
parentab87cf1cf59edffde2be404251ffb1013b67fc2d (diff)
copy media.ccc.de style
Diffstat (limited to 'assets/css/bootstrap/mixins/_clearfix.scss')
-rw-r--r--assets/css/bootstrap/mixins/_clearfix.scss22
1 files changed, 22 insertions, 0 deletions
diff --git a/assets/css/bootstrap/mixins/_clearfix.scss b/assets/css/bootstrap/mixins/_clearfix.scss
new file mode 100644
index 0000000..dc3e2ab
--- /dev/null
+++ b/assets/css/bootstrap/mixins/_clearfix.scss
@@ -0,0 +1,22 @@
+// Clearfix
+//
+// For modern browsers
+// 1. The space content is one way to avoid an Opera bug when the
+// contenteditable attribute is included anywhere else in the document.
+// Otherwise it causes space to appear at the top and bottom of elements
+// that are clearfixed.
+// 2. The use of `table` rather than `block` is only necessary if using
+// `:before` to contain the top-margins of child elements.
+//
+// Source: http://nicolasgallagher.com/micro-clearfix-hack/
+
+@mixin clearfix() {
+ &:before,
+ &:after {
+ content: " "; // 1
+ display: table; // 2
+ }
+ &:after {
+ clear: both;
+ }
+}