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

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

HTML Interview Question
HTML Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
How can I use forms for pull-down navigation menus?Why is there extra space before or after my table?