Last active
July 20, 2017 20:51
-
-
Save masterk63/dab912d79e68b26879902a35760b4944 to your computer and use it in GitHub Desktop.
alineado vertical css, centro vertical css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.contenedorCentro { | |
position: absolute; | |
display: table; | |
height: 100%; | |
width: 100%; | |
text-align: center; | |
border: 2px dashed #f69c55; | |
} | |
.centrado { | |
display: table-cell; | |
vertical-align: middle; | |
} | |
//esto va si o si, para que ocupe toda la pagina | |
html { | |
height: 100%; | |
} | |
body { | |
min-height: 100%; | |
} | |
//Otra forma de ver lo mimso | |
div { | |
display: table; | |
height: 100px; | |
width: 100%; | |
text-align: center; | |
border: 2px dashed #f69c55; | |
} | |
span { | |
display: table-cell; | |
vertical-align: middle; | |
} | |
<div> | |
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment