如何用CSS设置拉伸背景图片
如何使用 CSS 拉伸页面背景以及 DIV 和 DIV 的背景图像表格背景...这样,如果窗口大小发生变化,背景图像大小应该相应地拉伸(扩展/收缩)...
how to stretch the background images using CSS for page backgrounds and for DIV & table backgrounds... so that if the window size changes the background image size should stretch (expand / contract) accordingly....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只能在 CSS3 中使用
background-size
来完成。您还可以使用-o-background-size
、-webkit-background-size
和-moz-background-size
来尝试最大化浏览器支持。您应该将该值设置为 100%。在其他浏览器中,一旦图像超出范围,您可以重复背景或使用颜色,但不能拉伸。下面的第一个链接中有一些建议来尝试伪造它。请参阅:
Only can be done in CSS3 with
background-size
. You can also use-o-background-size
,-webkit-background-size
, and-moz-background-size
to try and maximize browser support. You should set the value to be 100%. In other browsers you can repeat the background or use a color once you're out of image, but not stretch. There are suggestions in the first link below to try and fake it.See:
您可以通过将其固定为图层来在没有 css3 的情况下完成此操作。
You can do it without css3 by fixing it as a layer.