Skip to content

Instantly share code, notes, and snippets.

View djanix's full-sized avatar

Janic Beauchemin djanix

View GitHub Profile
@djanix
djanix / css -> inline-block fix
Last active October 2, 2015 00:28
css -> Inline-block fix for ie6/ie7
.yourClass {
display: inline-block;
*display: inline;
zoom: 1;
}
@djanix
djanix / css -> clearfix
Last active October 2, 2015 00:28
css -> Clear after a float element for all browser and without adding aditionnal markup in the html
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
.clearfix {