Skip to content

Instantly share code, notes, and snippets.

@ionatan-israel
Last active December 20, 2015 16:49
Show Gist options
  • Save ionatan-israel/6164394 to your computer and use it in GitHub Desktop.
Save ionatan-israel/6164394 to your computer and use it in GitHub Desktop.
Centrar capas y texto.
.contenedor {
background-color: green;
position: absolute;
left: 50%;
top: 50%;
width: 400px;
height: 200px;
margin: -100px 0 0 -200px;
}
.caja1{
position: relative;
background-color: yellow;
width: 100px;
height: 100px;
top: 50%;
left: 50%;
margin: -50px 0 0 -50px;
}
.parrafo {
text-align: center;
vertical-align: middle;
line-height: 100px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<div class="contenedor">
<div class="caja1">
<div class="parrafo">
HOLA
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment