Home  >  Article  >  Web Front-end  >  What is the list style in css

What is the list style in css

coldplay.xixi
coldplay.xixiOriginal
2021-03-21 17:56:253362browse

The list styles in css are: 1. css ordered list [ol] and css unordered list [ul]; 2. css list label style [list-style-type]; 3. css label style Display mode [list-style-position].

What is the list style in css

The operating environment of this tutorial: windows7 system, css3 version, DELL G3 computer.

The list style in css is:

1, css ordered list (ol) and css unordered list (ul)

  list.html
 
  <!doctypehtml><html><head>
 
  <metacharset="utf-8">
 
  <title>列表样式</title>
 
  <linkhref="box.css"type="text/css"rel="stylesheet"></head><body>
 
  <p>
 
  <ul>
 
  <li>水果<ol>
 
  <li>苹果</li>
 
  <li>香蕉</li>
 
  <li>梨子</li>
 
  </ol>
 
  </li>
 
  </ul>
 
  </p></body></html>

2. css list label style list-style-type

Attribute value:

  •  circle;Open circle

  • Disc;Solid circle

  • Decimal;Number

  list.css
 
  ul>li{
 
  list-style-type:circle;
 
  }
 
  ul>li>ol>li{
 
  list-style-type:disc;
 
  }

3. The display method of css label style list-style-position

Attribute value: outside (outside the text, default)

inside (with the text)

  list.css
 
  ul{
 
  text-align:center;
 
  list-style-position:outside;
 
  }
 
  ul>li{
 
  list-style-type:circle;
 
  }
 
  ul>li>ol>li{
 
  list-style-type:disc;
 
  }

Related tutorial recommendations: CSS Video Tutorial

The above is the detailed content of What is the list style in css. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn