Home › Forums › CSS › BASIC LEVEL: Layout template without position › Re: BASIC LEVEL: Layout template without position
April 30, 2012 at 8:33 pm
#102030
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.