CSS: Detailed explanation of how to use list-style-type
This article mainly introduces how to use the CSS list-style-type attribute. Friends who need it can refer to
Setting the predefined type of the line item mark of the object.
Syntax
{ list-style-type: sType }
Possible values
sType
A string used to specify one of the following values:
disc | Default value. Solid circle. |
circle | Hollow circle. |
decimal | 1, 2, 3, 4 and so on. |
##lower-alpha | a, b, c, d and so on. |
lower-roman | i, ii, iii, iv and so on. |
none | No tags are displayed. |
square | Solid square. |
##upper-alpha
| A, B, C, D and so on. |
##I, II, III, IV and so on. | #The default value of this property is |
If the value of the list-style-image attribute is set to none, or the image pointed to by the URL cannot be displayed, the list-style-type attribute determines the appearance of the list-item tag. The
list-style-type attribute can be applied to any element after applying the margin and
display:list-item attributes. If you set the left margin of a line item to 0 using one of the margin properties, the list item markup will not be displayed. This margin should be set to at least 30 points.
Example The following example uses the list-style-type attribute to set the markup. This example uses a UL element as a selector in an inline (global) style sheet to change the markup type to circle:
<style> ul {list-style-type:circle} </style>
list-style-type -- Define list style
Values: disc | circle | square | decimal | decimal-leading-zero | lower-roman | upper-roman | lower-greek | lower-latin | upper-latin | armenian | georgian | lower -alpha | upper-alpha | none | inherit disc: point circle: circle
square: squaredecimal: number
decimal-leading-zero: decimal number, less than two digits Complete leading 0s, for example: 01, 02, 03, ..., 98, 99
lower-roman: Lowercase Roman text, for example: i, ii, iii, iv, v, ...
upper -roman: uppercase Roman letters, such as: I, II, III, IV, V, ...
lower-greek: lowercase Greek letters, such as: α(alpha), β(beta), γ(gamma), ...
lower-latin: lowercase Latin, for example: a, b, c, ... z
upper-latin: uppercase Latin, for example: A, B, C, ... Z
armenian: Armenian numerals
georgian: Georgian numerals, for example: an, ban, gan, ..., he, tan, in, in-an, ...
lower-alpha: lowercase Latin, For example: a, b, c, ... z
upper-alpha: Uppercase Latin, for example: A, B, C, ... Z
none: None (cancel all list styles)
inherit: inheritance
Initial value: disc
Inheritance: Yes
Applicable to: all elements belonging to list
Example
ul { list-style-type:disc; } ul#circle { list-style-type:circle; } ul#square { list-style-type:square; } ul#decimal { list-style-type:decimal; } ul#decimal-leading-zero { list-style-type:decimal-leading-zero; } ul#lower-roman { list-style-type:lower-roman; } ul#upper-roman { list-style-type:upper-roman; } ul#lower-greek { list-style-type:lower-greek; } ul#lower-latin { list-style-type:lower-latin; } ul#upper-latin { list-style-type:upper-latin; } ul#armenian { list-style-type:armenian; } ul#georgian { list-style-type:georgian; } ul#lower-alpha { list-style-type:lower-alpha; } ul#upper-alpha { list-style-type:upper-alpha; } ul#none { list-style-type:none; } ol { list-style-type:lower-roman; }
The above is the detailed content of CSS: Detailed explanation of how to use list-style-type. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



There are several ways to insert images in Bootstrap: insert images directly, using the HTML img tag. With the Bootstrap image component, you can provide responsive images and more styles. Set the image size, use the img-fluid class to make the image adaptable. Set the border, using the img-bordered class. Set the rounded corners and use the img-rounded class. Set the shadow, use the shadow class. Resize and position the image, using CSS style. Using the background image, use the background-image CSS property.

To set up the Bootstrap framework, you need to follow these steps: 1. Reference the Bootstrap file via CDN; 2. Download and host the file on your own server; 3. Include the Bootstrap file in HTML; 4. Compile Sass/Less as needed; 5. Import a custom file (optional). Once setup is complete, you can use Bootstrap's grid systems, components, and styles to create responsive websites and applications.

How to use the Bootstrap button? Introduce Bootstrap CSS to create button elements and add Bootstrap button class to add button text

There are two ways to create a Bootstrap split line: using the tag, which creates a horizontal split line. Use the CSS border property to create custom style split lines.

To adjust the size of elements in Bootstrap, you can use the dimension class, which includes: adjusting width: .col-, .w-, .mw-adjust height: .h-, .min-h-, .max-h-

Answer: You can use the date picker component of Bootstrap to view dates in the page. Steps: Introduce the Bootstrap framework. Create a date selector input box in HTML. Bootstrap will automatically add styles to the selector. Use JavaScript to get the selected date.

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.
