gpt4 book ai didi

html - twitter-bootstrap-rails 最大列宽

转载 作者:太空宇宙 更新时间:2023-11-04 14:43:41 26 4
gpt4 key购买 nike

我正在开发一个使用 twitter-bootstrap-rails 设置样式的非常简单的应用程序。在我的模型索引页面上有一个显示数据的表格,它看起来非常棒。问题是,如果有人在其中一个字段中输入一串很长的完整文本(例如 URL),该列的宽度会拉伸(stretch)并挤压所有其他列。我想要一些方法来强制列的宽度并告诉浏览器分解很长的单词。

到目前为止,我尝试做的是针对每个 <th>我添加了一个类并尝试使用 CSS 来控制宽度。这是一个例子

<table>
<thead>
<tr>
<th class="column1"> etc
<th class="column2"> etc
</tr>
</thead>
<tbody>
<tr>
<td class="column1"> etc
<td class="column2" etc
</tr>
</tbody>
</table>

然后我在我的样式表中使用了它

th.column1 { width: 300px;
word-wrap:break-word;}
td.column1 { width: 300px;
word-wrap:break-word;}

到目前为止这对我不起作用,我想知道我是否需要如此多地重复我的代码。

最佳答案

最后我自己修复了它。我所做的是使用最大宽度而不是宽度

th.column1 td.column1 { max-width:300px; word-wrap:break-word; }

关于html - twitter-bootstrap-rails 最大列宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11459900/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com