Robert Gann reports, in the user mailing list, that when viewed with IE7, this table will not render correctly. It "should produce a table whose first row holds four cells with the letters A, B, C and D. The second row should have the letter E, a blank cell, another blank cell, and the letter F. In IE7, the two blank cells are merged as if I had used a colspan attribute. In other browsers, all seems to be well."
(:table border=1 cellpadding=5 cellspacing=0:)
(:cellnr:) '''A'''
(:cell:) '''B'''
(:cell:) '''C'''
(:cell:) '''D'''
(:cellnr:) E
(:cell:)
(:cell:)
(:cell:) F
(:tableend:)
|
|
This works in IE6?/7:
(:table border=1 cellpadding=5 cellspacing=0:)
(:cellnr:) '''A'''
(:cell:) '''B'''
(:cell:) '''C'''
(:cell:) '''D'''
(:cellnr:) E
(:cell:)
(:cell:)
(:cell:) F
(:tableend:)
|
|