Q:怎么在網(wǎng)頁(yè)中用 ol 標(biāo)簽 + css 做出如圖所示的列表項(xiàng)座舍?求解锁摔!
A:如下所示
<!DOCTYPE>
<html>
<head>
<style>
ol {counter-reset:lt}
li {list-style:none;}
li::before{content:"("counter(lt)")"; counter-increment:lt 1; }
</style>
</head>
<body>
<ol>
<li>新歌top100</li>
<li>新曲top500</li>
<li>中文金曲榜</li>
</ol>
</body>
</html>
來(lái)源:https://zhidao.baidu.com/question/452557735.html
注意:有的瀏覽器估計(jì)不支持。