CSS列表属性

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
ul{
/*disc实心圆 square实心方框 circle空心圆 lower-roman罗马数字 none取消*/
list-style: none;
/*缩进*/
padding: 0;

}
</style>
</head>
<body>

<ul>
<li>111</li>
<li>222</li>
<li>333</li>
</ul>


</body>
</html>

 

posted @ 2022-05-28 16:59  呼长喜  阅读(28)  评论(0编辑  收藏  举报