Skip to content

Instantly share code, notes, and snippets.

View g12n's full-sized avatar

Michael Gehrmann g12n

View GitHub Profile
@g12n
g12n / dabblet.css
Created August 2, 2012 09:31 — forked from anonymous/dabblet.css
Chrome rounded corner bug test – with relative positioning
/*Chrome rounded corner bug test*/
.cropImage {
display: block;
overflow: hidden;
float: left;
border: 2px solid #000;
border-radius:50px;
/*Position Relative prohibits the div in Chrome and Safari from clipping it's child elements */
position:relative;