gpt4 book ai didi

css - Razor 。如何剪切消息

转载 作者:太空宇宙 更新时间:2023-11-04 12:01:55 25 4
gpt4 key购买 nike

我有一个 HTML 文件,同一行有 2 个 DIV 元素。

<div>
<div class="left"> @user.Message</div>
<div class="right"> @user.Name</div>
</div>

CSS:

.left{
width:80%;
float: left;
}
.right{
width: 20%;
float: right;
}

如果我将第一个 DIV 中的消息宽度设置为大于 80% 的值,我的结构就会崩溃。

是否可以拆分消息@user.Message,保证消息小于80%?

最佳答案

您可以使用 width、overflow、white-space 和 text-overflow 属性来实现内容的优雅修剪,以确保它不会破坏您的结构:

.wrapper{
width:600px;
}
.left{
width:80%;
float: left;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.right{
width: 20%;
float: right;
}
<div class="wrapper">
<div class="left">this should be a nice long string, over 80% of the total width of the parent, any more should be hidden from view gracefully</div>
<div class="right">should be 20%</div>
</div>

关于css - Razor 。如何剪切消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29706808/

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