有没有办法使用 CSS 根据屏幕中心(水平)定位某些内容?

发布于 2024-12-16 15:02:42 字数 466 浏览 0 评论 0原文

我想知道是否有更简单的方法来做到这一点:

  1. 水平放置一些东西在屏幕中央(简单)。
  2. 使其位置偏离中心。

我通常通过制作一个

来实现这一点,其宽度是我想要偏移量的两倍,将其设置为 margin: auto; 然后输入我想要的此元素内的元素向左或向右浮动。这很好用,我只是想可能有更短的方法。

举个例子,我可能希望将

放置在屏幕中心左侧 80px 处,如下所示:

             在此输入图像描述

I'm wondering if there's a simpler way to do this:

  1. Position something centre-screen horizontally (easy).
  2. Offset it's position from the centre.

I normally achieve this by making a <div> with a width double of the amount I want to offset by, set it to margin: auto; and then put my desired element within this floated either left or right. This works fine, I just thought there might be a shorter way.

An an example, I might want to have a <div> positioned 80px to the left of the centre of the screen, like this:

                   enter image description here

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

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

发布评论

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

评论(1

晨敛清荷 2024-12-23 15:02:42

你可以这样做:

body { position: relative }

div {
  width: 300px;
  height: 250px;

  /* Origins from the screen center */
  position: absolute;
  top: 50%;
  left: 50%;

  margin-top: -125px; /* height / 2 */
  margin-left: -230px; /* (width / 2) - 80 */
  /* The margin left would be -150px but you want it to move 80 pixels to left */
}

这是一个在线示例: http://jsfiddle.net/B4rDJ/2/(谢谢普尔穆!)

You can do something like this:

body { position: relative }

div {
  width: 300px;
  height: 250px;

  /* Origins from the screen center */
  position: absolute;
  top: 50%;
  left: 50%;

  margin-top: -125px; /* height / 2 */
  margin-left: -230px; /* (width / 2) - 80 */
  /* The margin left would be -150px but you want it to move 80 pixels to left */
}

Here's an online example: http://jsfiddle.net/B4rDJ/2/ (thanks Purmou!)

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