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:

enter image description here

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

Popular posts from this blog

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -