'How to remove different color borders
This is the HTML
<body>
<table border="10" id="pog">
<tr>
<td>Hi</td>
<td>Hi</td>
</tr>
<tr>
<td>Hi</td>
<td>Hi</td>
</tr>
</table>
</body>
this is the CSS
#pog{
border-color:blue;
}
the blue box is split with the two sides and they are different colors. How can I fix this?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
