I tried using
height: 100%
but this makes the div only as high as its contents - it just contains a single word of text.
How can I force the div to use the screen height instead?
|
|
You need the Try the following CSS:
The margin and padding must be set to 0 to prevent autoscroll in Firefox. |
|||
|
|
|
You should set all the containers that contain the div to height:100% as well, including the body and html tags. |
|||
|
|
You can get the width and height of the window using JavaScript and then use those values to set the height and width of the |
|||
|
|
|
maybe
what are you trying to do exactly? post some more info and we can help you more |
|||
|
|
|
You can only meaningfully use height=100% if its containing element's height is definided. Its 100%, of what? no height if defined anywhere. You can use javascript to get the height of the current window (as previously mentioned), or specify a specific height of 800px or whatever value. :D |
|||
|
|