[CSS21] Minor error in Section 17.1

" The next rules specify that the top row will be surrounded by a 3px solid 
blue border and each of the other rows will be surrounded by a 1px solid 
black border:
table   { border-collapse: collapse }
tr#row1 { border-top: 3px solid blue }
tr#row2 { border-top: 1px solid black }
tr#row3 { border-top: 1px solid black }
Note, however, that the borders around the rows overlap where the rows meet. 
What color (black or blue) and thickness (1px or 3px) will the border 
between row1 and row2 be? We discuss this in the section on border conflict 
resolution. "

Clearly the example should be "border" instead of "border-top"

Received on Wednesday, 29 September 2004 15:49:36 UTC