Skip to content

Instantly share code, notes, and snippets.

@ituki
Created June 18, 2014 15:32
Show Gist options
  • Save ituki/75a2daf5de7cb83507a5 to your computer and use it in GitHub Desktop.
Save ituki/75a2daf5de7cb83507a5 to your computer and use it in GitHub Desktop.
IE7でaの中のspan がクリックできない ref: http://qiita.com/ituki_b/items/d6bded0c9dc2a3735b51
/* HTML */
<ul class="clearfix">
<li><a href="http://jsdo.it"><span class="pic"><img src="http://dummyimage.com/200x150/000/fff" alt=""></span><span>クリックできない</span></a></li>
</ul>
/* CSS */
li a span {
display: block;
}
li a span {
position: relative;
display: block;
z-index: -1;
}
/* HTML */
<ul>
<li><a href="http://jsdo.it/"><span><img src="http://dummyimage.com/50x50/000/fff" alt=""></span><span>クリックできない</span></a></li>
</ul>
/* CSS */
li {
margin-top: 5px;
list-style: none;
}
li a span {
display: table-cell;
/display: inline;
/zoom: 1;
vertical-align: middle;
}
li {
margin-top: 5px;
list-style: none;
/zoom: 1;
}
li a span {
position: relative;
display: table-cell;
/display: inline;
/zoom: 1;
vertical-align: middle;
z-index: -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment