I have below code snippet and problem is background color is not extending when I scroll horizontally.
<section>
<h2>Overview
</h2>
....
</section>
CSS
section h2{
background:none repeat fixed 0 0 #A35A00;
width:100%;
}
section{
width:150px;
height:100px;
overflow:auto;
}
Here is the link http://jsfiddle.net/crmouli/uxuTC/
any idea, how to make it extend?
NOTE: I don't want to set the fixed with on header. And here is the example http://jsfiddle.net/crmouli/uxuTC/8/ try to resize the view port so that overview section will get a scroll and then if you scroll to left most then header will not extend to 100%.