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

css 设置元素背景为透明

程序员文章站 2022-03-29 12:06:47
...

 

要设置某一元素的背景为透明,在 chrome 、firefox、opera 下是这样的:

 

background-color: rgba(0, 0, 0, 0.4);

rgba 中的最后一个参数 0.4 就是想要的透明度,范围在0~1之间。

 

 

在 ie 中一般是这样的:

 

background-color: rgb(0, 0, 0);
filter: alpha(opacity=40);

opacity 表示透明度,它的值范围在 0~100 之间

 

 

那么如何兼容各浏览器呢?只要把它们写在一起就行了。

由于 ie 不支持 rgba,所以会忽略之。其他浏览器对于自己不支持的,一般也会忽略。

下面来个示例:

HTML 代码:

 

<body>
	<div class="non-transparent">
		aaaaa
		</div>
	</body>
	
<div class="transparent">
	<div class="box">
		box
		</div>
	</div>


CSS 代码:

 

 

.non-transparent:hover {
	background-color: yellow;
}

.transparent {
	position: absolute;
	top: 0;
	left: 0;
	
	text-align: center;
	
	width: 100%;
	height: 100%;
	
	filter: alpha(opacity=40);
	background-color: rgb(0, 0, 0);
	
	background-color: rgba(0, 0, 0, 0.4);
}

.box {
	background-color: yellow;
	width: 50%;
	height: 50%;
	
	position: relative;
	left: 5%;
	top: 10%;
}


显示效果:

 

chrome:


css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 

firefox:


css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 

opera:


css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 

ie8:


css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 

 

另外,在 chrome、firefox、opera 中也可以这样:

opacity: 0.4;

但是这样的话,会把所有子元素的透明度也设置为同样的值,效果如下图:


css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 

 

 

  • css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 
  • 大小: 2.3 KB
  • css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 
  • 大小: 58.9 KB
  • css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 
  • 大小: 28.9 KB
  • css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 
  • 大小: 5.2 KB
  • css 设置元素背景为透明
            
    
    博客分类: web 开发 css背景透明兼容 
  • 大小: 56 KB