这不会显示缩进:
<ol style="list-style-type:none">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
这仍然显示缩进:
ol
{
list-style-type:none;
}
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
css不适用于元素类型ol?
答案 0 :(得分:0)
这是因为您需要放置CSS样式
ol
{
list-style-type:none;
}
在网页主题部分的样式标记内。
试试这个:
<head>
<style>
ol
{
list-style-type:none;
}
</style>
</head>
头部应高于身体部位。
答案 1 :(得分:0)
这些完全一样。你可以点击&#34;运行&#34;按钮如下:
<ol style="list-style-type:none">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
&#13;
<!-- Don't forget the style tags -->
<style>
ol
{
list-style-type:none;
}
</style>
<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>
&#13;