centrado múltiple 1
by kseso
HTML
<ul class="padre">
<li class="hijo">
<a href="#">Una enlace</a>
</li>
<li class="hijo">
<a href="#">Otro máaas laaaargo</a>
</li>
<li class="hijo">
<a href="#">Mire usté...</a>
</li>
<li class="hijo">
<a href="#">Juega con el Css</a>
</li>
</ul>
CSS
* {
margin: 0;
padding: 0;
border: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
}
html, body {
font-family: serif;
font-weight:normal;
font-size: 100%;
height:100%;
width: 100%;
background: #F5DCB3;
}
.padre {
background: #D5D5D5;
text-align: center;
font-size: 1rem;
letter-spacing: 1rem;
padding: 1rem 0;
line-height: 1;
}
.hijo {
background: #EFD996;
border: 1px solid #fff;
display: inline-block;
letter-spacing: normal;
}
.hijo a {
color: #444;
text-align: left;
text-decoration: none;
display: block;
padding: 0.5rem;
}