gpt4 book ai didi

jquery - 如何在 bootstrap 4 中将长文本截断为 1 行

转载 作者:太空宇宙 更新时间:2023-11-04 00:35:39 24 4
gpt4 key购买 nike

我想在 bootstrap 4 中将一些长文本截断成一行,我在这里阅读了很多解决方案,例如 Link 1 , Link 2 , Link 3但他们没有帮助。

我的文字:

enter image description here

这是我想要的样子:

enter image description here

但这发生在如下代码中,表格行向外突出一点,文本不在一行中。

enter image description here

这是我的代码:

     <div class="row">
<div class="font-14">
<table id="userLogTable" class="table table-striped table-bordered" style="width:100%">
<thead>
<tr>
<th class="text-center">#</th>
<th class="text-center">LOG LIST</th>
<th class="text-center">DETAIL</th>
</tr>
</thead>
</table>
</div>
</div>

columns: [
{ data : "id", "className": "text-center" },
{ data : "log_info", "className": "text-log" },
{ data : "log_id", "className": "text-center",
render: function(data) {
return "...";
}
}
],

.text-log {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1; /* number of lines to show */
-webkit-box-orient: vertical;
}

最佳答案

固定行高,使overflow:scroll。这一定有效。

ATTR{
font-size:12px;
line-height:15px;
height:30px;
width:100%;
overflow:scroll;
white-space: nowrap;
}

ATTR::-webkit-scrollbar {
display: none;
}

ATTR {
-ms-overflow-style: none;
}

关于jquery - 如何在 bootstrap 4 中将长文本截断为 1 行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59485062/

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