Last active
October 13, 2015 22:28
-
-
Save libo1106/4266034 to your computer and use it in GitHub Desktop.
跨浏览器兼容inline-block
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul{ | |
font-size:*0;/*修复各个浏览器对于inline-block存在默认横向间距,除IE8*/ | |
} | |
ul li{ | |
display: inline-block; | |
*zoom:1; | |
*display:inline; | |
font-size: 12px;/*使用正常字号*/ | |
font-family: "宋体"; /*中英混排基线对齐*/ | |
margin-right: -.6em; /* 12px字体时候消除间隔*/ | |
} | |
/* 相关内容 | |
http://www.zhangxinxu.com/wordpress/2012/04/inline-block-space-remove-%E5%8E%BB%E9%99%A4%E9%97%B4%E8%B7%9D/ | |
-----------------*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment