Closed mnelson4 closed 3 years ago
centering vertically isn't going very well. This CSS should work according to Prince documentation but it isn't:
.post-712 .post-inner{
height:100vh;
min-height:400px;
border:1px solid red;
position:relative;
}
.post-712 .post-content{
margin:0;
position: absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
border: 1px dotted green;
}
the units vh
seem to be ignored. Using mm
instead works but then the page height is hard-coded. I'll leave this for now
created #201