I have two divs within a container div that I want at the bottom of the container and in the left/right corners. When I position the container relative and the inside divs absolute bottom: 0 the text within those divs disappear. Below is where I am at so far and the inside divs are placed left and right using float but in the center vertically instead of at the bottom.
CSS
.container {
margin-right: auto;
margin-left: auto;
width: 90%;
position: relative;
}
#top {
background-image: url(../header.jpg);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
min-height: 480px;
}
.title {
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 84px;
line-height: 92px;
float: left;
}
p span {
display: block;
font-weight: 400;
}
.author {
display: inline-block;
float: right;
bottom: 0;
}
li {
list-style: none;
}
HTML
<div class="container">
<div class="title">
<p>Howdy <span>Partner</span></p>
</div>
<div class="author">
<ul>
<li><img src="../portrait.png"></li>
<li></li>
</ul>
</div>
</div>
</section> <!-- Endof Header -->