[Solved] How to select this DIV in my website html? [closed]


find the closest parent with an ID (which should be unique) and traverse down to your target element

#us_grid_2 > .w-grid-list > article > .w-grid-item-h {
  color: #f00;
}

you can use the simpler approach and let the browser search all descendants on its own if you know there won’t be any other elements matching the same hierarchy

#us_grid_2 .w-grid-item-h {
  color: #ff0;
}

1

solved How to select this DIV in my website html? [closed]