时间:2021-07-01 10:21:17 帮助过:96人阅读
The following elements may also be considered block-level elements since they may contain block-level elements:
这段描述中,似乎也是在说, <li />
就是一个"半内联"的元素。当然,这个列表里面的类似于 <td />
这些元素,也曾给我带来这样的疑惑。今天看了一下各浏览器的默认CSS。结果是这样的:
Browsers | CSS |
---|---|
IE6/IE7 | li{display:block; } |
IE8+ / Webkit / Firefox / Opera | li{display:list-item; } |
在这里,也基本上明了了。在除 IE6/7 以外的 A-Grade 浏览器中,就是一个"半内联"的元素。提到 display:list-item;
,其实,即使现在所有的 A-Grade 浏览器都支持,用的人其实不多。为什么?其实就是没什么用。在 Quirks Mode,PPK 是这样说的:
display: list-item
means that the element is displayed as a list-item, which mainly means that it has a bullet in front of it (like an UL), except in IE 5 on Mac where it gets a number (like an OL). The numbers are buggy: all previous LI’s in the page count as one, so this example starts with number 5 (the screenshot was made before I inserted my compatibility-LI’s).Live example:display: blockdisplay: list-itemdisplay: list-itemRight。其实这个意义不大。但也算是解了自己的一个疑惑。分享出来,如果你也有这样的疑惑,或许下次 Coding 的时候出现 Bug 或者其他疑问,估计也就能很快反应过来了。
人气教程排行
- 230次 1 如何生成一个调查问卷_html/css_WEB-ITnose
- 230次 2 在页面直接显示日历_html/css_WEB-ITnose
- 230次 3 如何点击a标签实现弹出inputfile上传文件对话框_HTML/Xhtml_网页制作
- 229次 4 关于列表标记的详细介绍
- 229次 5 cssborder-bottom(指定下边线的样式、宽度及颜色)
- 229次 6 html新闻详情页_html/css_WEB-ITnose
- 229次 7 为何页面内容和网页边缘有空隙_html/css_WEB-ITnose
- 228次 8 position:fixed定位时“高度坍塌”问题的解决_html/css_WEB-ITnose
- 227次 9 htmlp标签怎么换行?htmlp标签添加br换行标签的应用
- 226次 10 HTML的<!DOCTYPE>标签
- 226次 11 html页面中友情链接怎么进行添加设置?(代码示例)
- 226次 12 form表单中属性及功能应用介绍汇总
- 226次 13 详解form标签中的method属性
- 226次 14 HTML5Canvas逼真烟雾效果js插件
- 226次 15 页面跳转特效_html/css_WEB-ITnose
- 226次 16 改变鼠标选中区域的样式。_html/css_WEB-ITnose
- 225次 17 关于$("body").append()一段html代码,在页面写能触发事件,写在js文件里写就没有_html/css_WEB-ITnose
- 225次 18 CSS3悬浮动画效果_html/css_WEB-ITnose
- 225次 19 纯C语言实现的CSS解析器:katana_html/css_WEB-ITnose
- 225次 20 body在默认情况下是具有margin外边距的_html/css_WEB-ITnose