You can only use this for a single div, otherwise all the divs get overlayed.
Preferably one id as in this example….use as it is….
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<div id="container"> Stuff here <input type="button" id="mybutton" class="btncustom" value="Previous" /> </div> <style> #container{ position:relative; } #mybutton { position:absolute; bottom:0; } </style> |