I have the following code:
CSS
#page {
width: 400px;
height: 400px;
border: 1px solid #F00;
}
#page #bar {
width: 100%;
padding-left: 10px;
border: 1px solid #00F;
}
HTML
<div id="page">
<div id="bar">1 2 3 4 5 6 7 8 9 0</div>
</div>
What should I put in CSS #page #bar
to eliminate the extra part outside the red box ?
Here is the jsFiddle.