Link to home
Start Free TrialLog in
Avatar of JayZeeBoy
JayZeeBoy

asked on

How do I center align an absolute position div?

Hello,

How do I position this div so it is centered?
<div id="scaletype" style="font-size:small;position:absolute;top:60px;left:30px"><%=scaletype%></div>

Open in new window

Avatar of coolersport
coolersport
Flag of Australia image

You need to set width for the div. Eg. 500px as in my example
<div style="position:absolute;width:100%;top:0;text-align:center"><div id="scaletype" style="font-size:small;text-align:left;margin-top:60px;width:500px;"><%=scaletype%></div></div>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of SadafRasheed
SadafRasheed
Flag of Pakistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial

</head>
<body bgcolor="#FFFFFF" text="#000000">
<div id="scaletype" style="position:absolute;background-color:#7B7BC0;border:1px #000000 solid;left:13%;top:15%;width:64%;height:8%;z-index:1" title="">
</div>
</body>
</html>
 
Regards
 
SeLVOl
Avatar of JayZeeBoy
JayZeeBoy

ASKER

perfect! thanks!