the table should cover the whole screen because of the percentages. I want the word test at the bottom of the screen, but it's not working? any better methods?

<table width="100%" height="100%" border="0">
  <tr>
    <td valign="bottom">test</td>
  </tr>
</table>

Recommended Answers

All 2 Replies

<div style="width:100%; bottom:0; top:auto; position:fixed; text-align:center">test</div>

one of many ways, styles belong in the stylesheet
tables are not used for layout, too much code too little content, current best practice is css positioning, separates layout from content, makes constant appearance simple

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.