Hyper Text Markup Language (HTML) Question: Download HTML PDF

Can I use percentage values for TD WIDTH=... tag?

Tweet Share WhatsApp

Answer:

The HTML 3.2 and HTML 4.0 specifications allow only integer values (representing a number of pixels) for the WIDTH attribute of the TD element. However, the HTML 4.0 DTD allows percentage (and other non-integer) values, so an HTML validator will not complain about <TD WIDTH="xx%">.
It should be noted that Netscape and Microsoft's browsers interpret percentage values for <TD WIDTH=...> differently. However, their interpretations (and those of other table-aware browsers) happen to match when combined with <TABLE WIDTH="100%">. In such situations, percentage values can be used relatively safely, even though they are prohibited by the public specifications.

Download HTML PDF Read All 84 HTML Questions
Previous QuestionNext Question
How can I use forms for pull-down navigation menus?Why is there extra space before or after my table?