xavibaby
01-06-2006, 10:09 PM
Is it possible to place two dividers side by side
|
View Full Version : Side by side? xavibaby 01-06-2006, 10:09 PM Is it possible to place two dividers side by side djou 01-06-2006, 10:18 PM Yes, it is very easy. Either by using absolute positioning and a width that will ensure they will fit correctly or by using the "float" attribute: <div id="left"> blah blah blah</div> <div id="right"> more blah blah</div> and in the CSS: #left {float:left;width:###px} #right {float:right;width:###px} xavibaby 01-06-2006, 10:37 PM I feel like such an idiot because I KNOW I'm still doing something wrong. Maybe it'll help if you saw what was going on? HERE (http://www.quizilla.com/users/black.angel/). Please ignore the tacky colors. :blush: |