I'm helpless, tried my best understanding CSS but it's just not for me.
I would like to make a really simple MasterPage:
- at the top a div of full width and height 40px (1)
- at the bottom also a div of full width and height 40px (2)
- in the middle:
- on the left: a div of width 200 px (3)
- on the right side of the left div: a div with contentPlaceHolder (4)
What I would like to get is: if i make some site that uses my master page and place a panel in the contentPlaceHolder that has width 800px, I would like my site to adjust to it - top, middle and bottom divs to have their width of 1000px (200 + 800). I also wouldn't like (and I have a huge problem with that) the (4) to move down if I resize (shrink) the browser window - I would like all the divs to be blocked.
This is my master page html:
<div>
<div class="header">
</div>
<div>
<div class="links">
</div>
<div class="content">
</div>
</div>
<div class="footer">
</div>
</div>
What kind of CSS do I have to write to make this finally work?