以下代码显示有两个嵌套列表。外面的一个带有 text-decoration:line-through 属性,另一个没有 line-through 。我怎样才能删除这个内部线路或不首先应用它?!我想要“外部”这个词而不是“内部”这个词
<DOCTYPE html>
<header><style>
ol li {text-decoration:line-through; color:red;}
ol li ul li{text-decoration:none; color:pink;}
</style></header>
<body>
<ol>
<li>Outter
<ul>
<li>
Inner
</li>
</ul>
</li>
</ol>
</body>