Skip to content

Instantly share code, notes, and snippets.

@tariel
tariel / centered
Created August 9, 2013 06:34
Centered div
<style>
#container { width:200px; height:200px; background-color:yellow; position:relative; }
#content { left:50%; top:50%; transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); background-color:gray; color:white; position:absolute; }
</style>
<div id="container"><div id="content">Hello World</div></div>
@tariel
tariel / index.haml
Created July 5, 2013 11:41
HTML boilerplate
_
@tariel
tariel / dabblet.css
Created December 16, 2011 06:56
The wrapper
/* The wrapper */
.b-block {
position: relative;
display: inline-block;
overflow: hidden;
width: 10em;
height: 10em;
vertical-align: middle;