Simple html height problem, i basicaly just want to set the height of the 3 buttons to 25% of the body height, works fine for the width attribute, but not for some reason the heigth doesn’t
div.mainMenuButton {
height:25%;
text-align:center;
width:100%;
background:green;
}
<body>
<div id="menuContainer">
<div id = "playButton" class = "mainMenuButton" onClick="loadGame()">
Play
</button>
</div>
<div id = "optionsButton" class = "mainMenuButton">
Options
</div>
<div id = "aboutButton" class = "mainMenuButton">
About
</div>
</div>
</body>
Thank you.
Here is the CSS:
CSS
And the HTML:
HTML
And the fiddle: http://jsfiddle.net/QPYML/