我有一张简单的桌子。
<table border="1" width="100%">
<tr>
<th>Select</th>
<th>Name</th>
<th>Preview</th>
</tr>
如何设置宽度,使Select和Preview为15px,Name为剩余宽度???
答案 0 :(得分:3)
嘿,现在你可以在你的CSS中定义如下
<强>的CSS 强>
.some{
width:15px;
}
HTML
<table border="1" width="100%">
<tr>
<th class="some">Select</th>
<th>Name</th>
<th class="some">Preview</th>
</tr>
</table>
答案 1 :(得分:1)
<table border="1" width="100%">
<tr>
<th width="15">Select</th>
<th>Name</th>
<th width="15">Preview</th>
</tr>
答案 2 :(得分:1)
你可以用作
<table border="1" width="100%">
<tr>
<th width="15px">Select</th>
<th>Name</th>
<th width="15px">Preview</th>
</tr>
答案 3 :(得分:0)
<table border="1px" width="100%">
<tr>
<th width="15px">Select</th>
<th>Name</th>
<th width="15px">Preview</th>
</tr>
</table>
如果您想根据尺寸在任何尺寸的屏幕上预览,请使用'%'来确定尺寸。对于前
<table border="1px" width="100%">
<tr>
<th width="15%">Select</th>
<th>Name</th>
<th width="15%">Preview</th>
</tr>
</table>