タスク: '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>