I have been reading around about best practices when doing developing a website. But I am still curious because the answers are found are mostly various, depend on a project’s scope and many other considerations.
But just to cut it short, basically I wanted to ask about a proper formatting for 3 main elements in a website.
- Header
- Main/Body
- Footer
How is the structure should be build? Are those three should be wrapped in a container like this:
<div class="wrap">
<div class="header"></div>
<div class="body"></div>
<div class="footer"></div>
</div>
And how is the styling should be done? I saw some people advised to use position:absolute for the CSS, while some others use relative instead. Sorry for the very basic question, but I am really confused about this at this current point of my learning.
HTML 5 example. Now a days best Layout width is 960.
.content{ width:960px }