Inner rounding
{"view":"split-vertical","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"}// alert('Hello world!');<div>I have a nice subtle inner rounding, don’t I look pretty?</div>/**
* Inner rounding
*/
div {
outline: .6em solid #655;
box-shadow: 0 0 0 .4em #655; /* todo calculate max of this */
max-width: 10em;
border-radius: .8em;
padding: 1em;
margin: 1em;
background: tan;
font: 100%/1.5 sans-serif;
}