Well, I want to centralize the contents of a div, vertically.
My div, is inside another div that is the container:
DIV Container:
container{
margin-left:10%;
margin-right:10%;
width:80%;
position:relative;
height:100%;
}
DIV I want to centralize Vertically:
.status{
position:absolute;
width:55%;
height:6%;
border-style: solid;
border-width: 0.1px;
margin-top:16.8%;
margin-left:44.8%;
font-family:proxima_nova_cn_rgregular,sans-serif;
}
How can I do this?
Thank you.