Satch3000
Satch3000

Reputation: 49384

Google Maps 100% Height

I am using the code from here:

http://jquery-ui-map.googlecode.com/svn/trunk/demos/jquery-mobile-example.html#basic_map

My only problem is that I can't find how to make the map 100% Height.

Anyone had this problem before?

Upvotes: 10

Views: 18928

Answers (1)

Tomas
Tomas

Reputation: 59455

You have to set height for html and body tags also:

html, body { height: 100%; }

Look at this example.

Upvotes: 25

Related Questions