如果一个div盒子 需要设置背景图 并且还要背景色 如何在写css样式

可能在大家布局时候,刚好需要给某个盒子设置一个背景色,并且还有背景图,那么如何来设置呢?

下面,鹏仔给大家简单讲解

如下方代码,给class名为的bg的盒子,先写设置背景图(平铺/位置根据需求),背景图大小(根据需求),再去设置背景色即可;

.bg{
    background: url(img/1.jpg) no-repeat center;
    background-size: 10px 10px;
    background-color: pink;
}


本文链接:https://my.lmcjl.com/post/21008.html

展开阅读全文

4 评论

留下您的评论.