Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建一个像这样的表:2 行和 2 列是“跨越”的,以创建 3 个合并单元格。
我该怎么做呢?
这是执行此操作的基本思想。您可以通过colspan财产来执行此操作。
colspan
<table width="100%"> <tr> <td style="background-color:green"></td> <td style="background-color:Red"></td></tr> <tr> <td style="background-color:green" colspan="2"></td></tr> </table>