1

我有一张简单的桌子。

<table border="1" width="100%">
        <tr>
                <th>Select</th>
                <th>Name</th>
                <th>Preview</th>
        </tr>

如何设置宽度,使选择和预览为 15px,名称为剩下的宽度???

4

4 回答 4

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>

现场演示 http://tinkerbin.com/n4Q1NOXW

于 2012-07-03T11:33:02.127 回答
1
<table border="1" width="100%">
        <tr>
                <th width="15">Select</th>
                <th>Name</th>
                <th width="15">Preview</th>
        </tr>
于 2012-07-03T11:31:12.470 回答
1

你可以用作

<table border="1" width="100%">
   <tr>
        <th width="15px">Select</th>
        <th>Name</th>
        <th width="15px">Preview</th>
   </tr>
于 2012-07-03T11:31:45.607 回答
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>​​​​​​​​​​​​​​​​​​​​​
于 2012-07-03T13:38:28.823 回答