| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
| <title>CSS Test: Border Conflict Resolution (by border style): 'outset' vs. 'ridge' - border with highest priority border style should dominate</title> |
| <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> |
| <link rel="help" href="http://www.w3.org/TR/CSS21/tables.html#border-conflict-resolution"> |
| <meta name="flags" content=""> |
| <meta name="assert" content="The 'ridge' border is the dominant border when it is collapsed with an 'outset' border of the same size."> |
| border-collapse: collapse; |
| border-top: 5px outset red; |
| border-left: 5px outset red; |
| border-bottom: 5px outset red; |
| border-right: 5px outset red; |
| <p>Test passes if the center box in the table below has a border similar to this:</p> |
| <td id="bottom">outset</td> |
| <td id="right">outset</td> |
| <td id="center">ridge</td> |
| <td id="left">outset</td> |