css – 如何在速记背景属性中包括background-cover值?

前端之家收集整理的这篇文章主要介绍了css – 如何在速记背景属性中包括background-cover值?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图设置一个背景图像拉伸到< div>的宽度和高度的全部范围。 < div>将是可变大小,所以我使用background-size:cover;
background: url("../images/bkgnd-sidebar.png") no-repeat left top cover;

我不知道如何将它放在这个简写符号和它的工作。如果我单独列出每个属性,它工作正常,但我希望一个一体化的解决方案。

这工作,但不是首选:

background-size:cover;
background-image:url('../images/bkgnd-sidebar.png');

解决方法

根据 W3MDN,需要一个斜线将背景尺寸与背景位置分开:

W3C示例:

p { background: url("chess.png") 40% / 10em gray  round fixed border-Box; }

MDN:

This property must be specified after background-position,separated
with the ‘/’ character.

Opera还有一些关于背景简写的信息:

http://dev.opera.com/static/dstorey/backgrounds/background-shorthand.html

原文链接:https://www.f2er.com/css/221229.html

猜你在找的CSS相关文章