IE下a标签跳转失败

       最近又发现了一个IE和其他浏览器的不同点,IE中,<a></a>中无内容时,无法点击跳转,真是虐死我了,没想到下面这样写也会有兼容性,看来我要学的真的很多。

<div id="one" style="position:relative;">
<
img src="http://imgad0.pcauto.com.cn/ivy/image/201511/3/14465527591550.jpg" />
<
a href="http://baidu.com.cn" style="position:absolute;display:inline-block;125px;height:22px;top:0px;left:0px;"></a>
</div>

       正确的写法是:

<div id="one" style="position:relative;">
     <a href="http://baidu.com.cn" style="display:inline-block;125px;height:22px;top:0px;left:0px;"><img src="http://imgad0.pcauto.com.cn/ivy/image/201511/3/14465527591550.jpg" /></a>
</div>

       

欢迎大家来浏览我的博客,如发现我有写错的地方,欢迎交流指正。
原文地址:https://www.cnblogs.com/lulu-beibei/p/4939587.html