Ahkay, so I'm trying to float two divs so that they are right next to each other. This works great in IE, but in real browsers, I can't get them to align.
CSS:
#left {
width:150px;
margin:0px;
float:left;
clear:right;
}
#right {
float:right;
clear:left;
margin:0px 0px 0px 160px;
}
One will go left, and one goes right, however they don't align vertically. I want them right next to each other, but it just won't happen. Any ideas?