以下は、組み込みページの HTML です。
<div class="notes quotes-notification member-savings f-left">
<h2>My Notifications</h2>
<ul>
<li><b>need to modify the HTML a little more than on the other pages you worked your account. </li>
<li>An <a href="#">answer has been posted</a> to a question you submitted.</li>
<li>A shop responded to a <a href="#">review you posted</a>.</li>
</ul>
</div>
quotes-notification
そして member-savings
両方とも以下のように異なるcssを持っています:
.member-savings {
width: 19%;
margin-right: 1.6%;
border: 2px solid #0c86c9;
}
.quotes-notification{
width: 32%;
}
このページでは、通知ブロックで幅を 32% にする必要がありますが、このブロックは 19% を幅と見なし、32% をオーバーライドします。ここでは、クラスを削除できませんmember-savings
19% を無視する方法はありますか?