Skip to content

Instantly share code, notes, and snippets.

@MatthewKBabbs
MatthewKBabbs / fix-flex-mix.css
Created August 14, 2012 02:29
Mix fixed and flexible columns, all equal heights
body {
padding: 0 1em;
}
h2 { background-color: #141a00; color: #fff; margin: 0 0 auto 0; padding: .5rem;}
h3 { padding: 0 .5rem; }
p { padding: 0 .5rem; }
.container {
display: table;
border-spacing: 1em;
@MatthewKBabbs
MatthewKBabbs / everything-else.css
Created September 16, 2010 01:14
Possible solution to the problem of Symbian browsers and IE8 & earlier not understanding media queries. (See http://www.quirksmode.org/blog/archives/2010/09/more_about_medi.html )
body {
// Basic styles
// (For mobile browsers that don't understand media queries)
}
@media all and (max-width: 600px) {
body {
// Extra styles for mobile
}
}