I wanted to make my text that is inside my CSS box vertically aligned on the middle. I tried valign="middle" on the div but it didn't work.
CSS:
#leadboard
{
width: 1300px;
height: 100px;
background-color: #dedede;
}
HTML:
<div id="leadboard" align="center">
<h1>Text Here</h1>
</div>