IE 11 Bug - Image inside label inside form

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

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



相关标签:
7条回答
  • 2021-02-18 14:05

    You can put the image in the background of the label..

    <label  for="myField1" ><img src="image1.jpg"></label>
    

    becomes

    <style>
     #lblMyField1 {  
        background-image: url('image1.jpg');
        background-position: center center;/* depend..*/
        background-repeat: no-repeat; 
     } 
    </style>
    
    <label id="lblMyField1" for="myField1" >&nbsp;</div>
    
    0 讨论(0)
提交回复
热议问题