使用repeat-y进行背景定位

发布于 2024-12-01 07:34:13 字数 402 浏览 0 评论 0原文

我有一个背景图像,它只是页面主要内容的包装。

我已将此图像设置为背景图像,如下所示:

#background {
    background: url("../image/bg.png") repeat-y 133px 50px;
    color: #000000;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0;
    padding: 0;
}

我本以为这会将图像定位在距离左侧 133 像素、距离顶部 50 像素的位置,但它与浏览器顶部齐平。

谁能解释一下为什么这样做?

谢谢

当图像有repeat-y时可以完成这种位置吗?

谢谢

I have a background image, that is simply a wrapper for the main content of my page.

I have set this image a background image like:

#background {
    background: url("../image/bg.png") repeat-y 133px 50px;
    color: #000000;
    font-family: Arial,Helvetica,sans-serif;
    margin: 0;
    padding: 0;
}

I would have thought that this would position the image 133px from the left and 50px from the top, but it is flush against the top of the browser.

Can anyone shed any light on why this is doing this?

Thanks

Can this kind of position be done when the image has repeat-y?

Thanks

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

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

发布评论

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

评论(1

笑看君怀她人 2024-12-08 07:34:13

您正在使用repeat-y,因此背景会垂直重复,向下和向上。您指定的值 - 50px - 是原始背景开始的位置,但如果您的背景高度为 50px,您将不会注意到差异,因为它也会在其上方重复。

You are using repeat-y so the background is repeated vertically, both down and up. The value you specified - 50px - is the place where the original background starts, but if your background has a height of 50px, you will not notice the difference as it is repeated above it as well.

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