Image and text inside of tag

后端 未结 3 1499
孤城傲影
孤城傲影 2021-02-07 07:51

This is the html asp.net generated (with some client-identifying details removed)

In Windows XP / IE 7 clicking on the image does nothing. Click on the text executes th

3条回答
  •  孤城傲影
    2021-02-07 08:28

    Try removing the divs, as the img tag and span are naturally display-inline. Add display block, float left if you need margins right to the tags themselves as supposed to adding divs. Also, to the anchor tag, add overflow:hidden (if you use floats), so that it takes up the total space of the two child elements.

提交回复
热议问题