开发者

can you have multiple columns have a rowspan in the same table

开发者 https://www.devze.com 2023-01-10 19:57 出处:网络
i want a table with three column and i want the first and third column to both have rowspan=\"3\" but the sec开发者_JAVA技巧ond column i want data on \"each\" row. is this possible?Yes.

i want a table with three column and i want the first and third column to both have rowspan="3" but the sec开发者_JAVA技巧ond column i want data on "each" row. is this possible?


Yes.

<table>
<tr><td rowspan="3">1</td><td>2</td><td rowspan="3">3</td></tr>
<tr><td>4</td></tr>
<tr><td>5</td></tr>
</table>

0

精彩评论

暂无评论...
验证码 换一张
取 消