I have a relative positioned div which I want to horizontal center. Also I want it to be at certain height in the middle of page. But with css below, I could put it in middle horizontally but it does not apply margin-top to it
position:relative;
margin: 0 auto;
text-align:center;
color:white;
opacity:0.75;
margin-top:30px;
What could be wrong??