gpt4 book ai didi

css - 如何使 CSS 考虑具有绝对定位的侧边栏

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

我在尝试学习 CSS 时遇到了困难。我似乎无法弄清楚如何使相对定位的 div 考虑到绝对定位的 div 的文本。

这是我的代码:

<!DOCTYPE html>
<html>
<head>
<style>
div.relative {
position: relative;
width: 600px;
height: 100%;
border: 3px solid #73AD21;
}

div.absolute {
position: absolute;
top: 0px;
right: 1;
width: 100px;
height: 100%;
border-right: 3px solid #73AD21;
}
</style>
</head>
<body>


<center>
<div class="relative">This div element has position: relative;
<div class="absolute">This div element has position: absolute;</div>
</div>
</center>

</body>
</html>

如何使线条扩展到侧边栏中文本的末尾?

谢谢

最佳答案

正如评论中提到的,如果 child 是绝对定位的,父元素确实不可能调整其高度以包含 child 。

如果相对和绝对定位不是必须的,那么你可以使用float或flexbox实现这种效果。

使用float属性:

div.relative {
width: 600px;
height: 100%;
border: 3px solid #73AD21;
overflow: auto;
}

div.absolute {
float: left;
width: 100px;
border-right: 3px solid #73AD21;
}
<center>
<div class="relative">This div element has position: relative;
<div class="absolute">This div element has position: absolute;</div>
</div>
</center>

使用 flex-box 属性:

div.relative {
width: 600px;
height: 100%;
border: 3px solid #73AD21;
display: flex;
flex-direction: row-reverse;
flex-wrap: nowrap;
justify-content: flex-end;
}

div.absolute {
width: 100px;
border-right: 3px solid #73AD21;
}
<center>
<div class="relative">This div element has position: relative;
<div class="absolute">This div element has position: absolute;</div>
</div>
</center>

如果右侧需要其他元素,则需要将它们全部包装在另一个容器中。

关于css - 如何使 CSS 考虑具有绝对定位的侧边栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40313742/

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