Modify the list ul li dot style to customize the front dot style of li

Problem Description

When making a static page, modify the style and color of the dot before the li tag according to the design drawing.

Implementation

html file:

<ul>
	<li>我是第一个</li>
	<li>我是第一个</li>
	<li>我是第一个</li>
</ul>

css file:
1. Modify the dot color

ul li::marker{
    
    
    color: #666666;
}

2. Modify the dot size to use font-sizethe implementation

ul li::marker{
    
    
    font-size: 12px;
}

If it is helpful to you, please remember to click triple link

Supongo que te gusta

Origin blog.csdn.net/weixin_49098968/article/details/129321938
Recomendado
Clasificación