I usually do something like this (very abreviated code - just to
illustrate the point):

html:

<div id="contentcontainer">
    <div id="nav">
    </div>
    <div id="content">
    </div>
    <div class="clear">
    </div>
</div>

css:

.clear {
    clear: both;
    height: 1px;
    overflow: hidden;
    }
#content {
    width: 800px;
    }
#nav {
    float: left;
    width: 150px;
    }
#content {
    float: left;
    width: 650px;
    }

The .clear is a class I have present in my css templates, so that I
have it available whenever I need it, wich is usually in situations
like yours.

Trond Ulseth


--~--~---------~--~----~------------~-------~--~----~
 You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to