如何将背景图片放置在右下角? (CSS)

发布于 2024-12-09 16:36:03 字数 116 浏览 0 评论 0原文

我有一个 500x500 像素的图像,在我的网站上设置为背景图像(作为 的背景图像),但我需要将此图像位于网页的右下角。我怎样才能实现这个目标? (用CSS方法更好)

谢谢。

I have a 500x500 px image which is set as a background image on my website (as background-image of <body>) But I need this image to be located in a bottom right corner of the webpage. How can I achieve this? (better with css method)

Thank You.

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

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

发布评论

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

评论(4

笨死的猪 2024-12-16 16:36:03

瞧:

body {
   background-color: #000; /*Default bg, similar to the background's base color*/
   background-image: url("bg.png");
   background-position: right bottom; /*Positioning*/
   background-repeat: no-repeat; /*Prevent showing multiple background images*/
}

背景属性可以组合在一起,形成一个背景属性。
另请参阅:https://developer.mozilla.org/en/CSS/background-position< /a>

Voilà:

body {
   background-color: #000; /*Default bg, similar to the background's base color*/
   background-image: url("bg.png");
   background-position: right bottom; /*Positioning*/
   background-repeat: no-repeat; /*Prevent showing multiple background images*/
}

The background properties can be combined together, in one background property.
See also: https://developer.mozilla.org/en/CSS/background-position

荆棘i 2024-12-16 16:36:03

为了更精确的定位:

background-position: bottom 5px right 7px;

For more precise positioning:

background-position: bottom 5px right 7px;
猛虎独行 2024-12-16 16:36:03

这应该可以做到:

<style>
body {
    background:url(bg.jpg) fixed no-repeat bottom right;
}
</style>

http://www.w3schools.com/cssref/pr_background-position.asp

This should do it:

<style>
body {
    background:url(bg.jpg) fixed no-repeat bottom right;
}
</style>

http://www.w3schools.com/cssref/pr_background-position.asp

心在旅行 2024-12-16 16:36:03

你有没有尝试过类似的事情:

body {background: url('[url to your image]') no-repeat right bottom;}

Did you try something like:

body {background: url('[url to your image]') no-repeat right bottom;}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文