|
Why the drop down menus in css alignment changes depending on the browser window size?
Return to Recent Questions
Q:
Do you know why the sub-menu alignment changes depending on the
browser window size?
However I was able to fix the issue with drop down menus in css now showing up in
IE at all, it turns out I forgot a </script> tag.
A:
This drop down menus in css can't get css properties of the object if they are situated in separate .css block (or file).
In other words, you can't get the value of "position" attribute of the object if the object doesn't have this property within inline style
(style="position:absolute"). To get the value you should move .css style into style="" attribute.
You should add style="position:absolute;"
to the
<DIV id=navholder>
So, you'll have:
<DIV id=navholder style="position:absolute;">
Return to Recent Questions
Related:
|