I need to vertically centre an element of unknown height on a page.
I can vertically center it relative to a containing div with this:
.one {
background: grey;
width: 50%;
position: relative;
top: 50%;
transform: translateY(-50%);
margin: auto;
}
.cont {
background: blue;
height: 300px;
}
http://codepen.io/anon/pen/lfrJx
However I cant get it to center vertically on the page:
.one {
background: grey;
width: 50%;
position: relative;
top: 50%;
transform: translateY(-50%);
margin: auto;
}
.cont {
background: blue;
height: 100%;
}