The use of combinators in CSS can make the HTML codes look better and less bulky.
Some of the areas where you can use them are
The code
<ul class="navbar-list">
<li class="list-item"><a href="" >Men</a></li>
<li class="list-item"><a href="" >Women</a></li>
<li class="list-item"><a href="" >Kids</a></li>
</ul>
can be made to
<ul class="navbar-list">
<li><a href="" >Men</a></li>
<li><a href="" >Women</a></li>
<li><a href="" >Kids</a></li>
</ul>
if we use .navbar-list > li { .. your css code }
rather than .list-item{.. your css code..}
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)