align div to bottom of page code example
Example: Make div bottom page
#container {
position: relative;
}
#copyright {
position: absolute;
bottom: 0;
}
or
#copyright {
position: absolute;
bottom: 2rem;
}
#container {
position: relative;
}
#copyright {
position: absolute;
bottom: 0;
}
or
#copyright {
position: absolute;
bottom: 2rem;
}