My table is displaying incorrectly on Firefox, while Chrome and IE are showing it correctly. The issue seems to be with the top and bottom rows of the table where I have rounded the edges using the CSS below:
table {
border-radius: 15px;
}
.topLeft {
border-top-left-radius: 15px;
}
.topRight {
border-top-right-radius: 15px;
For example, in the header row of my table:
<tr bgcolor=#cc9933>
<th width=100 align=center class=topLeft>Owner</th>
<th width=50 class=topRight>Points</th>
</tr>
The problem arises when using Firefox as the background color set in the <tr> tag does not appear rounded. Is there an issue with Firefox or are Chrome and IE overlooking a coding mistake?
https://i.sstatic.net/4FZtm.png Firefox 58.0.2
https://i.sstatic.net/hiqWd.png IE 11.1770.14393.0
https://i.sstatic.net/OiTE6.png Chrome 64.0.3282.186