背景
画前端页面的时候,偶尔会遇到一个需求。在一个 div 中,既有背景颜色,又有背景图片,而且背景图要在背景色之上。
/* 这种分开写的方式,把颜色写在图片之前,背景颜色会被图片覆盖,不显示 */
background-color: #f5f5f5;
background: url('./images/banner11.png') no-repeat scroll left bottom/cover;
/* 把背景色写在背景图之后就可以实现需求 */
background: url('./images/banner11.png') no-repeat scroll left bottom/cover;
background-color: #f5f5f5;
/* 也可以采用这种简写的方式,依然有效*/
background: #f5f5f5 url('./images/banner11.png') no-repeat scroll left
bottom/cover;
...大约 1 分钟