| General Databases (71) Linux (42) Outside the Cube (2086) Programming (730) Web publishing (118) about DelphiFAQ (12) JavaScript (55) perl CGI (3) VBScript (1) Web Hosting (8) Windows (355) |
W3C HTML validator complains about setting a table row height
Question: My HTML code contains table rows defined like this:<tr height=5> and the W3C's validator at http://validator.w3.org/ complains that this attribute is not valid according to 'HTML 4.01 Transitional'. What can I do? Answer: : Specify the row's height as part of the style attribute - like this:<tr style='height:"5px"'> Comments:
|