View Single Post
Old 27-06-2003, 06:39   #5 (permalink)
Brooklyn
Anarchist by Accident...
 
Brooklyn's Avatar
 
Join Date: Feb 2003
Location: Oxfordshire UK
Posts: 137
Quote:
Originally posted by dorian
another basic question here -
i got the layer to behave the way i want it but need to set the 'event' right:
i need it to be onLoad but it's not on the list - and it doesn't work if i just change it in the code
what is the right 'on_'?

Smallbeer: your tip didn't work for me. i'm too thick...


Firstly:

html, body { height: 100% }
div#bottom { position: absolute; bottom: 0; }

should be:
/*in the CSS*/
html, body { height: 100% }
#bottom { position: absolute; bottom: 0; }

/*in the HTML*/
<div id="bottom">ddddddddddd</div>

For onload (has top be all in lowercase for xHTML) try onfocus instead?
  Reply With Quote