任务:在“note”类的任何段落内的有序列表中强调强调的文本。这是我目前所拥有的......
.note>p>ol>em{text-decoration:underline;}
我正在努力实现这一目标。我的代码有什么问题?
***编辑:我也试过这个无济于事:
.note p ol em{text-decoration:underline;}
***编辑:这是我用来测试它的 HTML ......
<div class = "note">
<p>
Modifiers are sometimes included along with the basic command, inside...
</p>
<table align ="center" border = "3" >
<td>
<p>Three things:
<ol type = "i">
<li><em>First</em></li>
<li>Second</li>
<li>Third</li>
</ol>
</p>
</td>
</table>
</div>