Disable :hover on click

后端 未结 5 1380
醉梦人生
醉梦人生 2021-01-31 20:18

I have a div that has hover:

.div {
  // css
}
.div:hover {
  // css
}

But I want to disable the hover when you click on the

5条回答
  •  無奈伤痛
    2021-01-31 20:22

    .disabled {
    
      opacity: 0.5;
      pointer-events: none;
    
    }
    
    .disabled:hover *
    
      pointer-events: none;
      cursor: not-allowed;
    
    }
    

提交回复
热议问题