gpt4 book ai didi

html - 位置 : absolute and automatic width trough content

转载 作者:太空宇宙 更新时间:2023-11-03 21:59:07 24 4
gpt4 key购买 nike

我在容器中创建了一个小工具提示。所以有两个 div 都带有 position: absolute;。它们必须是绝对位置,否则它们会弄乱整个设计。

.container_1 {
position: absolute;
top: 20px;
left: 20px;
}

.container_2 {
position: absolute;
}

<div class="container_1"><div class="container_2">Full Name-Name</div></div>

我在第一个容器中也有一个 CSS 三 Angular 形,所以有两个容器。

在工具提示中显示了用户的全名。但现在我遇到了 div 没有内容那么宽的问题。所以我通过用   替换空格来修复它,但现在破折号也有同样的问题。但是用 替换破折号并不能解决问题。有人知道解决方案吗?

最佳答案

CSS:

.container_1 {
position: absolute;
top: 20px;
left: 20px;
}

.container_2 {
position: absolute;
width: 95px;
overflow: hidden;
white-space: nowrap;
}

http://jsfiddle.net/yG5eF/

编辑:抱歉,第一次看错了。

关于html - 位置 : absolute and automatic width trough content,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11787112/

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