Skip to content

Instantly share code, notes, and snippets.

View ajuliano's full-sized avatar

Albert Johansson ajuliano

View GitHub Profile
@ajuliano
ajuliano / Clearfix
Last active December 11, 2015 05:58
/* Clearfix
*
* For clearing floats like a boss h5bp.com/q
*
*/
.clearfix { *zoom: 1; }
.clearfix:before,
.clearfix:after {
display: table;
content: "";
define( 'WP_POST_REVISIONS', 2 );
@ajuliano
ajuliano / gist:1640630
Created January 19, 2012 15:36
Center (vertically and horizontally) an image in div
div.container {
height: X;
line-height: X;
text-align: center;
width: Y;
}
div.container img {
vertical-align: middle;
}
/* see http://haslayout.net/css/No-line-height-Vertical-Center-on-Images-Bug to make it work in lte IE7*/
@ajuliano
ajuliano / gist:1633089
Created January 18, 2012 13:52
HTML5 shiv för lt IE 9
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
<![endif]-->