<div class="container">
<p class="bottom-left">Bottom Left</p>
<p class="bottom-center">Bottom Center</p>
<p class="bottom-right">Bottom Right</p>
</div>
.container {
position: relative;
width: 100%;
height: 200px;
background: #000;
}
.container p {
color: #FFF;
padding: 0 8px;
margin: 0;
}
.bottom-left {
position: absolute;
bottom: 0;
left: 0;
}
.bottom-center {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}
.bottom-right {
position: absolute;
bottom: 0;
right: 0;
}