gpt4 book ai didi

javascript - 在 Chrome 中支持 clientWidth/height

转载 作者:行者123 更新时间:2023-12-03 11:41:17 26 4
gpt4 key购买 nike

要求图像应固定在我的页面的右下角。

我的代码:my_image.style.left =wrapper.clientWidth - my_image.clientWidth;在mozilla中完美运行,但chrome似乎不理解任何东西。

我也读过有关相同内容的文章: Understanding offsetWidth, clientWidth, scrollWidth and -Height, respectively

由于包装器宽度根据页面上呈现的内容而变化,因此我无法给出硬编码值那么还有其他属性可以帮助我吗?

编辑:::Top 是相对的,取决于包装器中的内容

谢谢。

最佳答案

普通 CSS 会更好,据我了解你的问题,你只需将位置设置为固定并指定距窗口边界的距离。固定位置将始终相对于窗口,而不是相对于父节点或页面大小。所以这应该就是你想要的!

#myimage{
position:fixed;
right:0px;
bottom:0px;
}

添加 left:0px 应使其填充屏幕宽度。否则只需将宽度设置为 % 以保持响应。如果您指的是页面而不是窗口,请尝试使用position:relative。

关于javascript - 在 Chrome 中支持 clientWidth/height,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26260719/

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