IE 11 Bug - Image inside label inside form

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

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



7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-18 13:53

    My markup looks like this (classes and other superfluous attributes removed):

  • It's a bit messy because some of it is auto-generated by Drupal. It didn't work in IE 11, but I made it work by adding:

    img {
        pointer-events: none;
    }
    

    I didn't need to change anything else and I have no other special css-trickery that I can see.

提交回复
热议问题