Skip to content

Instantly share code, notes, and snippets.

@tylor
Created June 7, 2012 23:52
Show Gist options
  • Save tylor/2892478 to your computer and use it in GitHub Desktop.
Save tylor/2892478 to your computer and use it in GitHub Desktop.
Quick CSS fix for echomemoirs.com
/* Full length pages, remove fancy scroll bar, and add clearfix */
#Faux:after,
.Faux:after,
#FauxInside:after,
.FauxInside:after,
#Main:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
#Faux,
.Faux,
#FauxInside,
.FauxInside,
#Main {
display: inline-block;
height: auto !important;
overflow: visible !important;
}
html[xmlns] #Faux,
html[xmlns] .Faux,
html[xmlns] #FauxInside,
html[xmlns] .FauxInside,
html[xmlns] #Main { display: block; }
* html #Faux,
* html .Faux,
* html #FauxInside,
* html .FauxInside,
* html #Main { height: 1%; }
#wrap { display: none; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment