css 'pointer-events' property alternative for IE

前端 未结 12 1285
無奈伤痛
無奈伤痛 2020-11-22 02:45

I have a drop down navigation menu in which some of the title should not navigate to other page when clicked(these title open a drop down menu when clicked on) while others

12条回答
  •  故里飘歌
    2020-11-22 03:47

    Best solution:

    .disabled{filter: alpha(opacity=50);opacity: 0.5;z-index: 1;pointer-events: none;}
    

    Runs perfectly on all browsers

提交回复
热议问题