Make a table that spans 100% width and 100% height.
Also make 2 rows
In the second row, set its height to like 90%, or even 99% to push that
button to the bottom.
You should now have your button at the bottom right of the screen.
So:
<table width=100% height=100%>
<tr height="90%>
<td>
<!-- all your content goes here -->
</td>
</tr>
<tr>
<td align="right">
<!--- BUTTON ON BOTTOM RIGHT GOES HERE -->
</td>
</tr>
</table>
"csgraham74" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi guys,
>
> I ve created a web control - i want to make sure that it always sits at
> the very bottom of the browser screen. How can i achieve this. Ive been
> playing about with tables etc.. in html but moving the vertical align
> affects all other controls tables etc. on the screen.
>
> basically can i force a control or table to be at the bottom of the
> screen ???
>
> thanks
>
> CG
>
|