12
How can I align this text "Adopt the rhythm of nature: her secret is patience", vertically and horizontally within the white field?
I used the following code:
<ul>
<li>
<a>
adote o ritmo da natuza: o segredo dela é a paciência.
</a>
<h2>Ralph Waldo Emerson</h2>
</li>
<li>
ul{
position: relative;
width: 100%;
height: auto;
list-style: none;
margin: 0;
padding: 0;
}
ul li{
position: relative;
width: 309px;
height: 260px;
background: #f3f2f1;
float:left;
margin: 0 19px 19px 0;
}
ul li a{
width: 257px;
height: 170px;
background: #fff;
display: block;
margin: 25px 0 0 25px;
text-decoration: none;
text-transform: uppercase;
text-align:center;
color: #f37021;
font-family: Futura;
font-size: 15px;
}
ul li h2{
font-family: Georgia;
font-size: 14px;
color: #111111;
font-style: italic;
text-align: center;
margin: 0;
}
I’m not sure if this is duplicate because your question is much more specific, but here’s a link to the minimum related: http://answall.com/questions/2817/better-forma-de-centralizar-um-element-vertical-horizontally
– bfavaretto