We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove hacks used for IE7 compatability:
This: audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
Becomes: audio, canvas, video { display: inline-block; }
This: .group:before, .group:after, .container:before, .container:after, .row:before, .row:after { display: table; content: ""; *zoom: 1; }
Becomes: .group:before, .group:after, .container:before, .container:after, .row:before, .row:after { display: table; content: ""; }
The text was updated successfully, but these errors were encountered:
Added to v2.5
Sorry, something went wrong.
Removed IE7- hacks
d741f2f
cferdinandi#7
No branches or pull requests
Remove hacks used for IE7 compatability:
Audio, Canvas, Video
This:
audio, canvas, video {
display: inline-block;
*display: inline;
*zoom: 1;
}
Becomes:
audio, canvas, video {
display: inline-block;
}
Clearfix
This:
.group:before, .group:after,
.container:before, .container:after,
.row:before, .row:after {
display: table;
content: "";
*zoom: 1;
}
Becomes:
.group:before, .group:after,
.container:before, .container:after,
.row:before, .row:after {
display: table;
content: "";
}
The text was updated successfully, but these errors were encountered: