Solve hover-class background color can not cover problems

.info_box{

width: 92%;

margin-top: 5px;

height: 40px;

line-height: 40px;

background-color: #fff;

border-radius: 5px;

margin-left: 4%;

font-size: 15px;

text-align: left;

}

.info_box_hover{

background-color: #658ac8 !important;

color: #fff;

}

ps:! important priority

<view class='info_box' hover-class="info_box_hover">

    <label style='margin-left: 10px;'>个人信息</label>

</view>

 

Guess you like

Origin blog.csdn.net/Skyline_ding/article/details/89958015