html – IE list-style-position:内部问题

html – IE list-style-position:内部问题,第1张

概述嗨我有list-style-position的问题:在使用IE时内部.在Firefox或Chrome上,它似乎没有这个问题. ol.myList { list-style-position:inside; }ol.myList li { padding:20px 10px; font-weight:bold }ol.myList li p { font-weight:normal } <ol 嗨我有List-style-position的问题:在使用IE时内部.在firefox或Chrome上,它似乎没有这个问题.
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:内部问题所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1144879.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存