すべての「販売」要素の背景を設定することはできますか?ネストされたリスト要素の背景色を設定する
#navigation li:last-child a {
border-right: none;
background: red;
}
私は他のすべての「特売」li
要素の背景を設定する必要があります。私はそうのように、「特売」のアンカータグの背景を設定することができました。
CSS
でこれらの要素の背景を設定するにはどうすればよいですか?私はJQuery
を使用する必要があるかもしれないと思っていますが、CSS
が望ましいでしょう。
<div id="navigation" class="cf">
<div id="hamburger_wrap">
<a href="#" id="hamburger">Main Menu</a>
</div>
<ul style="display: -webkit-flex;">
<li class="active">
<a title="Home" href="/" class="active ">
<b class="ico-home">Home</b>
</a>
</li>
<li>
<a title="Living Room" href="/Living-Room-Furniture" class="hasChildren ">Living Room</a>
<ul class="dropdown" style="display: none;">
<li>
<a title="By Living Room Range" href="/Living-Room-Furniture">By Living Room Range</a>
</li>
<li>
<a title="Nest of Tables" href="/Nest-Of-Tables">Nest of Tables</a>
</li>
<li>
<a title="Coffee Tables" href="/Coffee-Tables">Coffee Tables</a>
</li>
</ul>
</li>
<li>
<a title="SALE" href="Top-Sale-items" class="hasChildren ">SALE</a>
<ul class="dropdown" style="display: -webkit-flex;">
<li>
<a title="SALE Beds" href="/Sale-Beds">SALE Beds</a>
</li>
<li>
<a title="SALE Mattresses" href="/Sale-Mattresses">SALE Mattresses</a>
</li>
<li>
<a title="SALE Bed Frames" href="/Sale-Bed-Frames">SALE Bed Frames</a>
</li>
</ul>
</li>
</ul>