<ul>仍在使用css

时间:2015-10-02 15:10:39

标签: css

这不会显示缩进:

<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?

2 个答案:

答案 0 :(得分:0)

这是因为您需要放置CSS样式

ol
{ 
  list-style-type:none;
}

在网页主题部分的样式标记内。

试试这个:

<head>
    <style>
        ol
        { 
            list-style-type:none;
        }
    </style>
</head>

头部应高于身体部位。

答案 1 :(得分:0)

这些完全一样。你可以点击&#34;运行&#34;按钮如下:

&#13;
&#13;
<ol style="list-style-type:none">
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ol>
&#13;
&#13;
&#13;

&#13;
&#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;
&#13;
&#13;