怎么让透明div里面的文字不透明
1个回答
展开全部
div {
background-color: rgba(111, 1, 211, 0.8);
color: red;
}
rgba(),css3里才有的,所有只有支持css3的浏览器才支持,a是指透明度,取值0.0-1
如果用opacity就感觉文字也透明了........影响外观,阅读
还有一种兼容的方法,主要兼容不支持使用rgba()格式值的浏览器..................
:
<style>
.content {
width: 200px;
height: 200px;
position: relative;
margin: 20px auto;
}
.bgimage,.text {width: 100%;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
position: absolute;
left:0;
top:0;
}
.bgimage {
background-color: #6F02F4;
opacity: 0.7; //ff,webkit内核浏览器.........取值0-1;
filter:alpha(opacity=70); //IE兼容,取值0-100;
z-index:-1;
}
.text {
background-color: transparent;
color:#fff;
text-align: center;
font: 44px/200px "微软雅黑";
}
.text:hover{
color: red;
-webkit-transition:all 0.6s ease 0;
transition:all 0.6s ease 0;
}
</style>
<div class="content">
<div class="bgimage">
<!--这是背景层,只设置背景值,用绝对定位-->
</div>
<div class="text">这是文字</div>
</div>
//回答得很详细了吧...................
background-color: rgba(111, 1, 211, 0.8);
color: red;
}
rgba(),css3里才有的,所有只有支持css3的浏览器才支持,a是指透明度,取值0.0-1
如果用opacity就感觉文字也透明了........影响外观,阅读
还有一种兼容的方法,主要兼容不支持使用rgba()格式值的浏览器..................
:
<style>
.content {
width: 200px;
height: 200px;
position: relative;
margin: 20px auto;
}
.bgimage,.text {width: 100%;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
position: absolute;
left:0;
top:0;
}
.bgimage {
background-color: #6F02F4;
opacity: 0.7; //ff,webkit内核浏览器.........取值0-1;
filter:alpha(opacity=70); //IE兼容,取值0-100;
z-index:-1;
}
.text {
background-color: transparent;
color:#fff;
text-align: center;
font: 44px/200px "微软雅黑";
}
.text:hover{
color: red;
-webkit-transition:all 0.6s ease 0;
transition:all 0.6s ease 0;
}
</style>
<div class="content">
<div class="bgimage">
<!--这是背景层,只设置背景值,用绝对定位-->
</div>
<div class="text">这是文字</div>
</div>
//回答得很详细了吧...................
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询