View Full Version : helpppp div layers :S


m1s5y
03-10-2004, 01:29 AM
ok well everytime i try to make a stupid <div id..> it messes up.. how do i get it to go where i want it to? like an exact place on the screen without having a bottom scrollbar unless it needs 2 b there.. help sum1 :s lol xox melly*

photomarc
03-10-2004, 02:13 AM
like this:
<div style="position:absolute; top:90; left:200; width:482; height:372; z-index:1; overflow:auto; padding:5px; background-color:#000000;">
the top and left decide the location and the width and height decide the size
for the scroll bar to be there is the overflow:auto and if you just want it to get bigger with text take it out of there.
Hope this helps :-D

pb&j
03-10-2004, 04:31 AM
like this:
<div style="position:absolute; top:90px; left:200px; width:482px; height:372px; z-index:1; overflow:auto; padding:5px; background-color:#000000;">
stuff here
</div>

you must specify a measurement with the values.