html - CSS: How to apply style to a specific class -
i have css question please.
i have following html
code:
<ion-item *ngfor="let item of dummyjobmodels" class="item-search-dummy"> </ion-item>
this generates code below:
i hide border-bottom
. need set list-md
class, elements under item-search-dummy
class. have tried following, not work:
.item-search-dummy.list-md { border-bottom: 0px; }
if can advise how can selectively set class attribute, appreciate it.
you may try,
.list-md .item-search-dummy .item-inner{ border-bottom: none !important; }
Comments
Post a Comment