html中用ol时可以去除列表前面的点吗?

2025-04-17 00:10:05
推荐回答(1个)
回答1:

可以,用CSS控制

去除ul前的点:ul {list-style: none;}
去除ol前的编号:ol {list-style: none;}

插入