Skip to content

Commit

Permalink
Fixed double colon issue in IE with the clearfix
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshort committed Sep 22, 2011
1 parent 2f7b434 commit f1b7c88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stylesheets/stitch/patterns/layout/_clear-floats.scss
Expand Up @@ -5,12 +5,12 @@
// @see http://nicolasgallagher.com/micro-clearfix-hack/
//
.__clearfix {
&::before,
&::after {
&:before,
&:after {
content:"";
display:table;
}
&::after {
&:after {
clear:both;
}
zoom:1;
Expand Down

0 comments on commit f1b7c88

Please sign in to comment.