Im trying to get google maps to show 100% width and height. I have search several examples but cannot get it to work. The page it here
I used this css in the head
<style type="text/css">
html, body { height:100%; }
</style>
and this in the map div inline
<div id="map" style="width:100%; height:100%;">indenfor</div>
The map dosnt show
If i do this instead
<div id="map" style="width:500px; height:500px;">indenfor</div>
then the maps shows in 500×500 pixels.
what am i doing wrong ?
The map needs both a height and a width.