align bottom css code example
Example 1: css vertical align
.top-align {
vertical-align: top;
}
.center-align {
vertical-align: middle;
}
Example 2: put header at bottom of div
#header {
position: relative;
min-height: 150px;
}
#header-content {
position: absolute;
bottom: 0;
left: 0;
}
#header, #header * {
background: rgba(40, 40, 100, 0.25);
}