ol.myList { List-style-position:insIDe; }ol.myList li { padding:20px 10px; Font-weight:bold }ol.myList li p { Font-weight:normal }
<ol start="1"> <li> <h4>My Title</h4> <p>My Details</p> </li></ol>
在Chrome / firefox上,它显示如下:
1. My TitleMy Details
但是在IE上它显示了这个:
1.My TitleMy Details
任何建议,以使其在IE上工作?
解决方法 这是浏览器之间的不一致. firefox在单独的行上显示数字/项目符号,IE也是如此.使用display:h4上的inline-block和* display:inline; zoom:1;对于ie7.
ol.myList li h4 { display: inline-block; *display: inline; zoom: 1;}
关于此问题的Mozilla文档引用:https://developer.mozilla.org/en-US/docs/Web/CSS/list-style-position#Browser_compatibility
总结N.B. There is variance among browsers regarding behavIoUr when a block element is placed first within a List element declared as List-style-position:insIDe. Chrome and Safari both place this element on the same line as the marker Box,whereas firefox,Internet Explorer and Opera place it on the next line. For more information on this,see this Mozilla 07001 and an 07002.
以上是内存溢出为你收集整理的html – IE list-style-position:内部问题全部内容,希望文章能够帮你解决html – IE list-style-position:内部问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)