css中background和 background-color 同时使用的优先级
程序员文章站
2022-05-29 11:42:11
给背景图片设置一个默认背景颜色,有以下两种方法: 转载 http://www.itxst.com/detail/jnjvv2qu.html ......
给背景图片设置一个默认背景颜色,有以下两种方法:
<style>
.bg1{
background:url(http://debug.itxst.com/img/logo.png) red no-repeat;
height:80px;width:1000%;
}
.bg2{
background:url(http://debug.itxst.com/img/logo.png) no-repeat;
height:80px;width:1000%;
background-color:red;
}
</style>
<div class="bg1">
</div>
<div class="bg2">
</div>
转载
推荐阅读
-
CSS3中background-clip和background-origin的区别示例介绍
-
Webpack中css-loader和less-loader的使用教程
-
css中background和 background-color 同时使用的优先级
-
如何使用php脚本给html中引用的js和css路径打上版本号
-
CSS背景图片和HTML中的img标签使用实例
-
CSS3中HSL和HSLA的简单使用示例
-
详解如何使用CSS3中的结构伪类选择器和伪元素选择器
-
如何使用CSS3中的结构伪类选择器和伪元素选择器
-
css3 中translate和transition的使用方法
-
css中background-origin属性的使用