Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS BASIC LEVEL: Layout template without position Re: BASIC LEVEL: Layout template without position

#102030
Senff
Participant

You sure you want a fixed position for #items? I would personally go for floats, something like this:

#items {
float:left;
width: 200px;
}

#section1 {
float:left;
width: 320px;
}

#section2 {
float:left;
width: 320px;
}

However, if you really need to position things for some reason, you’ll have to be more specific in explaining why/how/etc.