Contents

[edit]

Tidy: <...> proprietary attribute "..."

[edit]

Cause:

The tag contains an attribute that is proprietary to Netscape or Internet Explorer.

[edit]

Example:

Sample: <table> proprietary attribute "height"

Good<table height="100%">
Good<table style="height: 100%">
[edit]

Solution:

Most tags have a equivalents in standard HTML or CSS.

Tag Proprietary attribute Standard attribute
<body> marginwidth=0, marginheight=0, leftmargin=0, topmargin=0 style="margin: 0"
<frameset> border=0, frameborder=0 ,framespacing=0 None with frameset. See here. Use a HTML table with iframe for the same result. Or, even better, do not use frames at all!
<table> height=100% style="height: 100%"
<table> nowrap style="white-space: nowrap" or use nowrap in <td> or <th>
<td> background="abc.gif" style="background-image:url(abc.gif)"
[edit]

References:

Retrieved from "http://www.htmlpedia.org/wiki/Tidy_53"