Como fazer uma divisão em CSS
Use %.
% takes the x% space of the parent element.
example:
This div will have the same width as the body, which is usually the whole page.
<style>
div{
width:100%;
}
</style>
<body>
<div></div>
</body>
PanosG