Control bottom right hand corner of screen Dotnet

C

csgraham74

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
 
G

Grant Merwitz

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>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,763
Messages
2,569,562
Members
45,039
Latest member
CasimiraVa

Latest Threads

Top