0
我有兩段代碼。我期待這些有相同的結果,但沒有運氣。誰可以給我解釋一下這個?CSS/HTML - 列寬格式化
<table border=1px>
<tr>
<td width=20%>test1</td>
<td width=80%>test2</td>
</tr>
</table>
<style>
table { width:100%;}
td.1 { width:20%; }
td.2 { width:80%; }
</style>
這可以像我期望的那樣工作。第一列是20%,第二列是80%。
<table border=1px>
<tr>
<td class="1">test1</td>
<td class="2">test2</td>
</tr>
</table>
<style>
table { width:100%;}
td.1 { width:20%; }
td.2 { width:80%; }
</style>
此版本顯示列爲50/50。
謝謝你們。我是這樣的noob :) – Jason
不用擔心!這就是你來這裏的原因,對吧? :-)我們很樂意提供幫助。 – simeg