Hello all,
<div class="alert error">
<p class="denied">adfafdadfadsf</p>
</div>
div.alert.error {
background:url("v3.png") no-repeat scroll 7px -643px #FFEEEE;
}
Does the selector "div.alert.error" mean the following?
select DIVs that contain both class alert and error.
Is there a different between
CaseI: div.alert.error
CaseII: div.alert .error
CaseIII: div .alert .error
Thank you