css allign bottom 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);
}
Example 3: css bottom
.bottom {
position: fixed;
bottom: /*AMOUNT DOWN AFTER IT ADD REM OR % OR PX */;
}