|
Why my html form drop down menu does not float and why I cannot centre the html form drop down menu?
Return to Recent Questions
Q:
I think I am almost create my html form drop down menu.
I would like to know a couple of things.
Why the html form drop down menu does not float?
Why I cannot centre the html form drop down menu?
A:
When you use floatable html form drop down menu you can't use relative html form drop down menu position.
So, if you use relative position for the html form drop down menu and to center the html form drop down menu you use <p> or <div> with the center alignment your menu won't float.
To center your floatable html form drop down menu you should set absolute coordinates.
var absolutePos = 1;
var PosX = "50%";
var PosY = "40";
Return to Recent Questions
Related:
|