css - Remove horizontal line <hr> when screen width <767 -
how can hide horizontal line tag <hr>
when screen width smaller 767px
?
how can done using css only.
@media(max-width:767px) { hr { display:none; } }
<hr />
more info on media queries.
Comments
Post a Comment