html - Placing button on Bottom right corner of jsp page -
i want place button on bottom right corner of page. trying place without using external css in jsp page. topmargin , leftmargin not work. button position @ same place.
<table topmargin="30" leftmargin="50"> <tr> <td><input type="button" value="close" onclick="closewindow();" /></td> </tr> </table>
can please point me in right direction on this. tia
if going use inside table, can design in such way last row last column should have the button. or if trying fo page in general try below code
<div style="position:absolute;bottom:10px;right:10px; z-index:999" > <input type="button" value="close" onclick="yourfunction();" /> </div>
Comments
Post a Comment