字体透明
把这个的背景和字体弄成透明度的效果。
HTML:
阿斯蒂芬规划局快乐Css:
.namee{
background:#2175B5;
opacity: 0.5;
line-height: 35px;
height: 35px;
text-align: center;
width: 100%;
}
.namee a{
color: #fff;
opacity: 0.5;
text-decoration: none;
}
首先给背景宽、高,再给个颜色,
opacity: 0.5;这是调透明度的样式,调透明度的时候0.0是全透明,而1是不透明
调时只能在0.0到1之间。
效果是这样的。
字体透明
把这个的背景和字体弄成透明度的效果。
HTML:
阿斯蒂芬规划局快乐Css:
.namee{
background:#2175B5;
opacity: 0.5;
line-height: 35px;
height: 35px;
text-align: center;
width: 100%;
}
.namee a{
color: #fff;
opacity: 0.5;
text-decoration: none;
}
首先给背景宽、高,再给个颜色,
opacity: 0.5;这是调透明度的样式,调透明度的时候0.0是全透明,而1是不透明
调时只能在0.0到1之间。
效果是这样的。
发布评论