[Webkit-unassigned] [Bug 16914] bordercolor attribute on a <td> is ignored

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Dec 12 12:32:16 PST 2009


https://bugs.webkit.org/show_bug.cgi?id=16914


Daniel Bates <dbates at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dbates at webkit.org




--- Comment #4 from Daniel Bates <dbates at webkit.org>  2009-12-12 12:32:16 PST ---
The bordercolor attribute appears to be an Internet Explorer-specific HTML
attribute, see <http://msdn.microsoft.com/en-us/library/ms533517(VS.85).aspx>.
Hence, it is not part of any W3C standard. Instead, the preferred method for
setting the border color is to use the CSS property border-color.

For example, we can implement the reduction using CSS properties as follows:

<table style="border: 1px solid red" border="1">
<tr>
  <td style="border: 1px solid blue">foo</td>
  <td>bar</td>
</tr>
</table>

Notice, this will produce analogous results to the IE-specific attribute but
uses the standardized CSS properties.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list