Skip to content

Instantly share code, notes, and snippets.

@tyron
Created April 18, 2012 22:56
Show Gist options
  • Save tyron/2417231 to your computer and use it in GitHub Desktop.
Save tyron/2417231 to your computer and use it in GitHub Desktop.
Illustrating correct & wrong inner border-radius
/**
* 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;
}
<div class="outer right"><div>This</div></div>
<div class="outer wrong"><div>NOT this</div></div>
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment