Skip to content

Instantly share code, notes, and snippets.

@LeaVerou
Created December 2, 2011 00:46
Show Gist options
  • Save LeaVerou/1421054 to your computer and use it in GitHub Desktop.
Save LeaVerou/1421054 to your computer and use it in GitHub Desktop.
Illustrating correct & wrong inner border-radius
<div class="outer right"><div>This</div></div>
<div class="outer wrong"><div>NOT this</div></div>
/**
* Illustrating correct & wrong inner border-radius
*/
.outer {
padding: 10px;
margin: 50px;
border: 1px solid silver;
box-shadow: 0 0 10px gray;
border-radius: 20px;
}
div div {
padding: 30px;
background: slategray;
font-size: 200%;
font-weight: bold;
color: white;
border-radius:10px;
}
.outer.wrong div {
border-radius: inherit;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment