CSS 显示内联块交叉浏览器(包括ie6)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 显示内联块交叉浏览器(包括ie6)相关的知识,希望对你有一定的参考价值。
.holder{
letter-spacing:-1ex; /*fix to remove the "space" (generated by indentation) beetween elements*/
}
.holder *{
letter-spacing:0ex; /*fix to return the default value of the letter-spacing*/
}
.holder .inlined-block{
display:inline-block;
/*ie6, 7 & 8 hack*/
*display:inline;
zoom:1;
width:49.9%; /*just for example*/
}
/*
Example
<div class="holder">
<div class="inline-block">content</div>
<div class="inline-block">content</div>
<div class="inline-block">content</div>
<div class="inline-block">content</div>
<div class="inline-block">content</div>
</div>
*/
以上是关于CSS 显示内联块交叉浏览器(包括ie6)的主要内容,如果未能解决你的问题,请参考以下文章
CSS 内联块交叉浏览器
跨浏览器显示:内联块
CSS 跨浏览器显示:内联块
兼容性问题
内联块(跨浏览器)
CSS显示:内联与内联块[重复]