I am on the lookout for a solution to shift/arrange divs to the bottom instead of the top. For example, when attempting to delete some of the divs with the "box" class in this code snippet:
Current code:
#holder {
height: 220px;
width: 50px;
background-color: #000000;
padding: 5px 10px 10px 10px;
}
.box {
height: 50px;
width: 50px;
background-color: #ffffff;
margin-top: 5px;
}
Currently, removing a div removes it from the bottom. I would like to invert this behavior so that it removes from the top instead.