文字不透明,背景透明
Posted 左耳_fly
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文字不透明,背景透明相关的知识,希望对你有一定的参考价值。
<div class="box">文字不透明,背景透明</div>
<style>
*{
padding:0;
margin:0;
}
.box{
background:rgba(255,0,0,0.5);
filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#FF8080,endcolorstr=#FF8080);/*此时的值为半透明效果后的颜色值*/
height:200px;
color:#fff;
line-height: 200px;
}
</style>
以上是关于文字不透明,背景透明的主要内容,如果未能解决你的问题,请参考以下文章