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

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

android - ConstraintLayout: Realign baseline constraint in case if dependent view visibility was set to GONE -

c# - Populating Gridview inside Listview ItemTemplate On Web User Control from Code Behind -