Is it possible to change only the alpha of a rgba background colour on hover?

后端 未结 14 2288
离开以前
离开以前 2020-11-29 07:04
14条回答
  •  南笙
    南笙 (楼主)
    2020-11-29 07:31

    Simple workaround with opacity if you can accommodate a slight change in background-color:

    .yourClass {
        // Your style here //
        opacity: 0.9;
    }
    
    .yourClass:hover, .yourClass:focus {
        opacity: 0.7;
    }
    
    .yourClass:active {
        opacity: 1;
        box-shadow: none;
    }
    
    .yourClass:hover, .yourClass:focus, .yourClass:active {
        text-decoration: none;
        outline: none;
    }
    

提交回复
热议问题