CSS: 背景位置: ???;
希望这些图能够解释我所追求的内容。红色表示背景,灰色表示网页。
错误
正确
我该如何实现这一目标?我已经尝试过 background-position: Bottom right;
但它完全错误。
Hopefully these diagrams explain what I'm after. The red signifying the background and the grey the webpage.
Wrong
Right
How do I achive this? I've tried background-position: bottom right;
but it's just all wrong.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对我来说效果很好:
如果图片足够大,则不需要重复。 (甚至在 IE6 中也能工作)。
Works fine for me:
And if the picture is big enough the no-repeat isn't needed. (Works even in IE6).
应该可以解决问题。
参考:CSS background-position 属性
should do the trick.
Reference: CSS background-position Property
背景位置:右下角
确实应该做您描述的事情。如果您希望图像坚持使用 viewport 而不是文档的右下方,则必须添加
background-atchment:fixed
。 IE中存在问题,但是当在主体/HTML背景上使用时,这很好。background-position: bottom right
should indeed do what you describe.If you want the image to stick to the bottom-right of the viewport rather than the document, you will have to add
background-attachment: fixed
. There are problems with this in IE, but when used on the main body/html background it's fine.也许你忘了
maybe you forgot