html, body { height: 100%; }
#board { display: block; margin: auto auto; min-height: 100%; }
To use percentages your html and body both need to be height 100% then your outer container (assuming it is #board here) needs to specify min-height to fill the document, and be display type of block.