CodeAve.com CodeAve.com - HTML - Tables
ASP
JavaScript
CSS
HTML
·Forms
·Hyperlinks
·Headers
·Images
·Tables
·Text Display
·Miscellaneous
·Contents
·What's New?
Links
Mail List
Search
Sitemap


 


Table Width - Pixcels & Percents
Table width will determine how much of the browser space (horizontally) will be used to display your table. There are two basic ways to accomplish this by percent and by pixels. Pixels can be thought of as the smallest logical unit for display. Logical in the sense that since screen pixel resolution can vary from PC to PC, but can be thought of as the smallest unit of measurement, like a dot in a pointillist painting. A table built with a pixel number will only collapse to a set size when the browser is re-sized. Tables built with percents will occupy that percentage of the browser’s visible area.
View the Output
Text View
Print View
Mail this Link
Download the Code

<html>
<title>
CodeAve.com(Table Width - Pixels and Percent)</title>
<body bgcolor=
"#FFFFFF">

<!-- Table with width set by pixels
Valid values are 1 to almost anything.
Any value greater than the users browser width
will cause the horizontal scrollbar to appear at the bottom
of the browser-->

<table width="300" border="1" >
<tr><td>
Table width set to 300 pixels
</td></tr>
</table>

<p>
<!-- Table with width set by percent
valid values are 1 to 100
This table will adjust to use 85% of the browser area -->

<table width="85%" border="1" >
<tr><td>
Table width set to 85 percent
</td></tr>
</table>

</body>
</html>

 

 

 



ASP: What's New? | Articles | Script Writers | Database Display | Read/Write
Server Variables | Response Objects | Random Events | Miscellaneous
HTML: Forms | Hyperlinks | Headers | Tables | Hyperlinks | Headers | Text Display
JavaScript: Document Info | Forms | Images | Navigation | Script Writers
CSS: Basics | Page Display | Text Display | Script Writers | Miscellaneous
Links | Search Engine db |  Privacy Statement |  Advertising Rates |  Email

CodeAve.com is hosted by MyHosting.com
Donate Food Online with a Mouse Click at TheHungerSite.com
Donate Land Online with a Mouse Click at TheRainForestSite.com
© 1999 - 2010 CodeAve.com
All Rights Reserved