你说的是gbk
编码还是什么
颜色是么晕color:rgb(255,0,0)color:rgb(0,255,0)color:rgb(0,0,255)
在css中使用rgba(255, 255, 255, 0.5)这样的格式来表示rgha。其中最后一个参数表示Alpha通道,表示透明度。
例如:给两个div添加一样的背景色设置不同的透明度
代码:
<div class="div1">rgba透明度0.4</div>
<div class="div2">rgba透明度0.6</div>
css:
div{
margin:10px auto
width:200px
height:100px
text-align: center
line-height: 90px
}
.div1{background: rgba(83,172,150,0.4)}
.div2{background: rgba(83,172,150,0.8)}
效果:
你好!a:visited{
background:#ffffff
}
普通写法
a:visited{
background:rgba(255,255,255,1)
}
css3写法,前三个是rgb,最后一个表示透明度,IE8以下,及其他一些低版本不支持
仅代表个人观点,不喜勿喷,谢谢。