Disable tooltips using css

后端 未结 10 971
隐瞒了意图╮
隐瞒了意图╮ 2021-02-12 15:33

Is there a way to disable the tooltips of the tag in css?

10条回答
  •  一整个雨季
    2021-02-12 16:08

    I know this is an old question, but in the meantime this has become possible via CSS like this:

    pointer-events: none;
    

    Note however that this also disabled the clicking ability! It was what I needed, but may not be the case for the OP.

    cfr https://developer.mozilla.org/en/docs/Web/CSS/pointer-events

提交回复
热议问题