Just got driven mad not solving this in 2.5.1, but found this post and had to use the –
Text and Input on consecutive lines method and plus the p display:none to get both browsers conforming.
All sweet now, but it the evil bug is still there obviously.
Hi fffizzz
IEx computes padding into the width of a container, so it makes your left container 550 + 51(Padding-left) + 35(Padding-right) and then doesn’t leave room for the right column, which then floats to the bottom of the 800px container div.
Have played with this problem and expressing the padding in ems seems to resolve it:
`
.sub_left {
padding-RIGHT: 1em; padding-LEFT: 6em; PADDING-BOTTOM: 10px; WIDTH: 550px; PADDING-TOP: 0px border: 1px solid red;
}
.sub_right {
PADDING-RIGHT: 1em; PADDING-LEFT: en; PADDING-BOTTOM: 10px; PADDING-TOP: 29px; border: 1px solid green;
}
BTW: it makes troubleshooting easy if you temporarily hang a border around your divs, then you can see what they are doing.