Now I want 1 and 2 to have no direct border. Using border-right:0px does not work. Is there any way to eliminate the border between 1 and 2?
<table border="1" width="300" style="border-collapse: collapse;"> <tr > <td style="border-right:0px">1</td> <td>2</td> <td>3</td> <td>4</td> </tr> </table>
It turns out that the left side also needs to be set, thank you very much.