Set up a div and call it oval. This will set up or CSS command to target the div.
<div id="oval"></div>
The next thing to do is set up is the style tag for our oval. We are doing basically the same thing that we did in the circle for CSS but we are giving one of our sides a longer width like we do in the rectangles for CSS. Then we take our border radius and make it 100%. :-)
<style>
#oval{
width:200px;
height:100px;
border-radius:100%;
background:orange;
}
</style>

Sign Up To Comment