3
<table>
<tr>
<th>Name</th>
<th>phone no</th>
<th>address</th>
</tr>
<tr>
<td>Nadia</td>
<td>012-4532564</td>
<td>no 6,ampang, selangor, malaysia</td>
</tr>
<tr>
<td>osman</td>
<td>017-25698744</td>
<td>no 20 street 3</td>
</tr>
</table>
以上是我的HTML編碼,所以輸出將CSS:表多列單列
name | phone no | address
------------------------------------------------------
nadia| 012-4532564 | no 6,ampang, selangor, malaysia
-----------------------------------------------------
osman| 017-25698744 | no 20 street 3
-----------------------------------------------------
我想用CSS給像下面的輸出...
-----------------------------------
| nadia |
| 012-4532564 |
| no 6,ampang, selangor, malaysia |
-----------------------------------
| osman |
| 017-25698744 |
| no 20 street 3 |
-----------------------------------
如果使用HTML,我們可以使用colspan ..已經使用CSS搜索代碼,我發現列跨度,但它根本不工作...我堅持使用table tag
而不是div
,只使用CSS ...更多像我一樣希望表是響應模板...
why why你呢,如果你想要這種輸出的話,可以使用div嗎? –