5
would like to know if it is possible to carry out the vertical-align
in a div with Absolute position? Follow the code to analyze:
.teste {
background: #F00;
width: 500px;
height: 100px;
display: table-cell;
vertical-align: middle;
position:absolute;
}
Link to the code: http://jsfiddle.net/douglas1551/pzryoqjz/
Thanks!
you want to align the contents of the div to the center?
– CesarMiguel
maybe this question will help you: http://answall.com/questions/141/comoro-centralizar-verticallyo-conte%C3%Bado-de-um-elemento
– Leonardo
Cesarmiguel not necessarily, I want to be able to use the vertical-align as a whole( top, Middle, bottom )
– Douglas dos Santos