Skip to content

Instantly share code, notes, and snippets.

@lidaobing
Created May 19, 2012 15:37
Show Gist options
  • Save lidaobing/2731253 to your computer and use it in GitHub Desktop.
Save lidaobing/2731253 to your computer and use it in GitHub Desktop.
<!-- this one works, but ugly in IE7 -->
<div style="width:220px;text-align:center">
<a href="#">
<img src="foo16.png" />
</a>
</div>
<!-- this one not works in IE8 standard mode -->
<div style="width:220px;text-align:center">
<a href="#">
<img src="foo16.png" style="display:block" />
</a>
</div>
<!-- this one should works -->
<div style="width:220px;text-align:center">
<a href="#">
<img src="foo16.png" style="display:block;margin:0 auto" />
</a>
</div>
see also: http://w3help.org/zh-cn/causes/RT8003
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment