Hi,
I have many, many divs, and in IE it works fine but in NN it packs
them all in the top left corner.
here how I implement it in IE
I have style sheet with
#myDiv{
font-size: 12px;
position: absolute;
z-index: 1;
overflow: hidden;
width: 110px;
height: 25px;
visibility: inherit;
text-align: center;
cursor:hand;
vertical-align: baseline; margin-top: auto; padding-top: 4px
}
and then
<div id="myDiv" onClick="submitUrl('about.jsp')"
onMouseOut="rollover(document.images['about'],'imgOut')"
onMouseOver="rollover(document.images['about'],'imgOver')">About</div><img
name="about" border="0" src="buttons/before.gif" width="110"
height="25">
imgOver and imgOut are images I define in js
any ideas
I usually put the divs between td tags
tks
Phill