You can use position:absolute; for absolute positioning of the element in the parent div. When using position:absolute; the element will be placed absolutely from the first positioned parent div, if it cannot find it, it will absolutely position from the window, so you will need to make sure that the contents of the div are located.
To position the contents of a div, all position values ββthat are not static will work, but relative is the easiest since it does not change the positioning of the divs by itself.
So add position:relative; in the content div, remove the float from the button and add the following css button to the button:
position: absolute; right: 0; bottom: 0;
Kokos Apr 28 2018-11-11T00: 00Z
source share