IE 11 Bug - Image inside label inside form

前端 未结 7 1711
面向向阳花
面向向阳花 2021-02-18 13:13

In IE11, the following piece of code will check the radio button as expected:



7条回答
  •  日久生厌
    2021-02-18 13:58

    img {
        pointer-events: none;
        position: relative;
        z-index: -1;
    }
    

    This solved it in my case. The img will be placed behind the label but "shine through". I hope it helps.

提交回复
热议问题