gpt4 book ai didi

css 定位绝对不能按预期工作

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

我正在学习 CSS,正在摆弄 CSS 位置属性。据我了解,position:absolute 将相对于浏览器窗口放置元素,并且下面的所有元素都将被推到具有 position:absolute 的元素之前。但是当我运行 fiddle 时,我看到默认情况下该元素位于 h1 标记下方,而不是窗口的左上角。请让我知道我在理解上哪里出错了。下面是代码:

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<h1>Just some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css positioning in the browserJust some text to check the css</h1>
<div style="position:relative; background-color:green; width:20px;padding:10px;">
<div style="position:absolute;background-color:red;padding:10px">
<span>value</span>
</div>
</div>
</body>
</html>

Plnkr 链接 - Plunker Link

最佳答案

position:absolute 相对于其最近定位的祖先元素定位元素(在本例中,它的 position:relative 父 div)。使用 position:fixed 相对于窗口定位。

关于css 定位绝对不能按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35346041/

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