Home >Web Front-end >HTML Tutorial >How to make there is no border between 2 td? _html/css_WEB-ITnose
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>
6ae8b7eba0e9d5a1eec3b543b7e6a0cd1b90dd5946f0946207856a8a37f441edf
9ab0ed7bdabb5ce723e3d43053795b762b90dd5946f0946207856a8a37f441edf
It turns out that the left side also needs to be set, thank you very much.