IE Mac 5.0:
Element is hidden if it has a position value and is descendant of a floated element.
#floated {
float: left;
}
On IE Mac 5.0 you won't see the red div below.
#positioned {
position: relative;
}
Tested on: IE Mac 5.0 on System 9.
Doesn't apply to: IE Mac 5.2 on OS X.
Add a position value to the floated element.
#floatedPositioned {
position: relative;
float: left;
}
#positioned {
position: relative;
}