348

鉴于以下标记,我如何使用 CSS 强制一个单元格(列中的所有单元格)适应其中内容的宽度而不是拉伸(这是默认行为)?

<style type="text/css">
td.block
{
border: 1px solid black;
}
</style>
<table style="width: 100%;">
<tr>
    <td class="block">this should stretch</td>
    <td class="block">this should stretch</td>
    <td class="block">this should be the content width</td>
</tr>
</table>

编辑:我意识到我可以对宽度进行硬编码,但我不想这样做,因为该列中的内容是动态的。

看下面的图片,第一张图片是标记产生的。第二张图就是我想要的。

在此处输入图像描述

4

6 回答 6

565

我不确定我是否理解你的问题,但我会尝试一下:

td {
    border: 1px solid #000;
}

tr td:last-child {
    width: 1%;
    white-space: nowrap;
}
<table style="width: 100%;">
    <tr>
        <td class="block">this should stretch</td>
        <td class="block">this should stretch</td>
        <td class="block">this should be the content width</td>
    </tr>
</table>

于 2012-06-29T18:41:19.830 回答
63

环境

max-width:100%;
white-space:nowrap;

将解决您的问题。

于 2015-02-25T10:39:24.063 回答
16

对我来说,这是表格及其列的最佳自动调整和自动调整大小(使用 css !important ......只有当你不能没有时)

.myclass table {
    table-layout: auto !important;
}

.myclass th, .myclass td, .myclass thead th, .myclass tbody td, .myclass tfoot td, .myclass tfoot th {
    width: auto !important;
}

不要为表格或表格列指定 css 宽度。如果表格内容较大,它将超过屏幕大小。

于 2017-03-08T19:14:11.400 回答
9

有很多方法可以做到这一点!

如果我错了,请纠正我,但问题是寻找这种结果。

<table style="white-space:nowrap;width:100%;">
<tr>
<td class="block" style="width:50%">this should stretch</td>
<td class="block" style="width:50%">this should stretch</td>
<td class="block" style="width:auto">this should be the content width</td>
</tr>
</table>

前 2 个字段将“共享”剩余页面(注意:如果您向任一 50% 字段添加更多文本,则将占用更多空间),最后一个字段将持续主导表格。

如果您愿意让文本换行,您可以移动white-space:nowrap; 到第三个字段的样式
将是在该字段中开始新行的唯一方法。

或者,您可以在最后一个字段上设置长度,即。宽度:150px,并在前 2 个字段上保留百分比。

希望这可以帮助!

于 2019-10-04T15:22:01.140 回答
3

根据我能找到的所有规范,将 CSS 宽度设置为元素的 1% 或 100% 与父级有关。尽管在撰写本文时,Blink Rendering Engine (Chrome) 和 Gecko (Firefox) 似乎可以很好地处理 1% 或 100%(使列缩小或列以填充可用空间),但根据所有 CSS 规范并不能保证我可以找到正确渲染它。

一种选择是用 CSS4 flex div 替换 table:

https://css-tricks.com/snippets/css/a-guide-to-flexbox/

这适用于新浏览器,即 IE11+,请参阅文章底部的表格。

于 2015-05-09T11:47:11.283 回答
-5

简单的 :

    <div style='overflow-x:scroll;overflow-y:scroll;width:100%;height:100%'>
于 2019-05-01T11:57:05.230 回答