Oval

by Annett

HTML

<div id="oval">
    <div id="oval2"></div>
</div>

CSS

#oval {
   width: 200px; 
   height: 100px; 
   background: blue; 
   -moz-border-radius: 100px / 50px; 
   -webkit-border-radius: 100px / 50px; 
   border-radius: 100px / 50px;
}

#oval2 {
   margin: 0 0 0 5px; 
    padding: 5px;
   width: 180px; 
   height: 90px; 
   background: white; 
   -moz-border-radius: 100px / 60px; 
   -webkit-border-radius: 100px / 60px; 
   border-radius: 100px / 60px;
}