What will be selector for multi class HTML element in CSS or JQuery? -
i want select element use css selectors or jquery (it can same if possible in css).
<div class="product-panel prices-list-panel"></div>
how can select elements '.product-panel'
, '.prices-list-panel'
?
try this:
.product-panel.prices-list-panel{....}
Comments
Post a Comment