如果div的设置了透明度,div里面的文字颜色为白色。这时候字体看起来就“不白了”,我想让文字也“很白”,有办法解决吗?
效果图:
示例代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<style>
body{
background-image:url('personal_center.png');
}
.div1{
width:200px;
height:200px;
margin:50px auto;
background-color:#000000;
opacity:0.5;
}
.div2{
width:200px;
height:200px;
margin:50px auto;
background-color:#000000;
}
span{
color:#ffffff;
font-size:16px;
font-weight:bold;
}
</style>
</head>
<body>
<div class="div1">
<span>测试文字</span>
</div>
<div class="div2">
<span>测试文字</span>
</div>
</body>
</html>
用背景色,
background: rgba(0, 0, 0, .5);
用opacity的话,子元素也会一起透明。