Skip to content

Instantly share code, notes, and snippets.

@ingeit
Created July 28, 2017 14:53
Show Gist options
  • Save ingeit/cdd44297a0a0d6903b180f3d64571125 to your computer and use it in GitHub Desktop.
Save ingeit/cdd44297a0a0d6903b180f3d64571125 to your computer and use it in GitHub Desktop.
alineado vertical css, centro vertical css
.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