0
点赞
收藏
分享

微信扫一扫

记录css划入变高亮

小亦同学321 2022-04-29 阅读 104
css

.a:hover .a-box {

background-color: none;

opacity: 1;

filter: none;

}

.a-box {

opacity: 0.3;

filter: alpha(opacity=30);

background-color: #000;

background-color: rgba(37, 36, 36, 0.6);

}

<html>

<div class="a">

      <div class="a-box"></div>

</div>

</html>

举报

相关推荐

0 条评论