list-style:none
时间: 2023-11-04 18:40:16 浏览: 123
CSS: list-style 和 inline使用方法详解
This CSS property is used to remove the default bullet or number list style from the ordered or unordered lists.
Syntax:
ul {
list-style:none;
}
Example:
ul {
list-style:none;
}
This will remove the bullet points from all unordered lists on the webpage.
阅读全文