i have number of divs are available in my webpage. For each div one button is there. My requirement is place this button at bottom for every div irrespective of the size of the div. Please give me some solution for this.
A:
Wrap the div in another div, and put the button directly after it, like this:
<div style="border: 1px solid black;">
<div style="height: 300px;">
Main contents of Div
</div>
<button>Hello</button>
</div>
Vincent McNabb
2010-07-22 06:51:41
Or even wrap the button in its own div should give the same effect.
Thqr
2010-07-22 07:02:17