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

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -