Is there a way to vertically center text within a div and also horizontally center the div at the top of the screen?
Visit this link for more details
<div id='custom'>
example text
</div>
#custom{
width: 50%;
background: #FF0000;
z-index: 99999;
transform-origin: center center;
position: absolute;
left:50%;
top: 10px;
margin:0 auto;
height: 52px;
border-radius:10px;
}