绝对位置与左边距硬右对齐

发布于 2024-10-04 07:50:20 字数 243 浏览 6 评论 0原文

我无法弄清楚如何在特定点停止绝对定位的元素。

此页面上,您将看到“让我加入您的团队”字样,这些字样和机器人绝对定位所以它们总是在屏幕上很硬。我想做的是,当屏幕大小调整为更窄时,我想阻止它与 mac 图像重叠。我尝试添加 margin-left: 900px;但当屏幕变小时,它没有效果。有谁知道如何在使浏览器更窄时在特定点停止单词和机器人?

I can't work out how to stop an absolutely positioned element at a particular point.

On this page you will see the words "Get me on your team" these words and the robot are absolutely positioned so they are always hard right on the screen. What I am trying to do is when the screen is re-sized to become more narrow I want to stop it overlapping the mac image. I have tried adding margin-left: 900px; but it has no effect when making the screen smaller. Does anybody know how to stop the words and robot at a particular point when making the browser more narrow?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何止钟意 2024-10-11 07:50:20

我认为您想在包含元素上设置 min-width

body {
  min-width: 1024px;
  position: relative;
}

还设置相对位置,以便机器人绝对定位于身体而不是窗户。

I think you want to set a min-width on the containing element.

body {
  min-width: 1024px;
  position: relative;
}

also set position relative so that the robot is positioned absolute to the body in stead of to the window.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文