There is two piecharts in fiddle. Why the content isn't fit with things that inside of it? What is the reason of overflowing charts out of the content? I want put these charts in to yellow content area. Being a css newbie i don't know that how i can fix it.
#content {
width:80%;
height:auto;
margin-left:auto;
margin-right:auto;
padding: 10px 20px 30px 20px;
background-color:yellow;
color: #333333;
font-family: Helvetica, Arial, sans-serif;
}
<div id="content">
This is the content area
<div id="piechart1" style="position:relative;top:20px;float:left;"></div>
<div id="piechart2" style="position:relative;float:left;"></div>
</div>