I am trying to put a div element in the centre of a container div both horizontally and vertically when we don't know the height of the container.
I have set up the container element to fit the full height and width of the document by absolute positioning, but cannot get the vertical alignment.
.ui .chv {
text-align: center;
position: absolute;
top: 60px;
bottom: 50px;
left: 20px;
right: 20px;
display: block;
margin: 0;
height: auto;
background: green;
text-align: center;
vertical-align: middle;
}