欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css中background和 background-color 同时使用的优先级

程序员文章站 2022-12-23 17:13:32
给背景图片设置一个默认背景颜色,有以下两种方法: 转载 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>

 转载