博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[html] 图层div半透明,文字不透明
阅读量:6826 次
发布时间:2019-06-26

本文共 850 字,大约阅读时间需要 2 分钟。

以下代码兼容ie6+,firefox和chrome,目的是,使图层半透明,而文字不透明。

 

<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<
html 
xmlns
="http://www.w3.org/1999/xhtml"
>
<
head
>
<
meta 
http-equiv
="Content-Type"
 content
="text/html; charset=utf-8"
 
/>
<
title
>图层div透明,文字不透明
</
title
>
<
style 
type
="text/css"
>
body 
{
     background-color
:
#000000;
}
#container
{
 
    border
:
1px solid #c00;
 
    background-color
:
rgba(212,0,0,0.5);
 
    background
:
#f00\9;
 
    filter
:
alpha(opacity=50);
 
    width
:
500px;
 margin:
40px auto;
 
    line-height
:
200%;
 
    font-size
:
14px;
 
    padding
:
14px;
    color
:
 #fff;
}
 #container *
{
 position:
relative;}
</
style
>
</
head
>
<
body
>
 
<
div 
id
="container"
>
     
<
span
>我是文字,我不透明哦~在firefox和下面,主要是使用了 background-color: rgba的 a (alpha) 这个特性,而对于ie6+,是使用了IE滤镜 filter,注意CSS代码
</
span
>
    
</
div
>
</
body
>
</
html
>

  

转载地址:http://juykl.baihongyu.com/

你可能感兴趣的文章
svn项目冲突时显示无法加载项目的解决方法
查看>>
node论坛练手
查看>>
[Python3网络爬虫开发实战] 1.7.3-Appium的安装
查看>>
magento 购物车 首页 显示
查看>>
mapper.xml
查看>>
模拟EventCenter,flash自带的事件机制的一个解耦框架,callback回调方式用于模块之间的通信...
查看>>
zookeeper选主算法二
查看>>
JS 中的require 和 import 区别整理
查看>>
stream& datagram socket
查看>>
vue.js 2.0开发(4)
查看>>
urb传输的代码分析【转】
查看>>
ftrace 简介【转】
查看>>
内置函数总结
查看>>
模块的查找顺序
查看>>
wpf中ListBox的选中项与ComboBox间的绑定
查看>>
web前台传参到后台出现错误
查看>>
数据库的备份和导入
查看>>
Oracle trunc()函数的用法
查看>>
col-md-*和col-sm-*
查看>>
前端开发大众手册(包括工具、网址、经验等)
查看>>