I need help styling the first item of a HTML structure I have:
<div class="home-view">
<div class="view-header">Header</div>
<div class="view-content">Content</div>
</div>
In this structure, I want to style the first item of home-view
. It could be either view-header
or view-content
, depending on the situation.
The first item in home-view
needs customized styles.
I have tried using .home-view:first-child
, but it doesn't work due to the different class names of the children elements. Any suggestions?