media query change button text

Solutions on MaxInterview for media query change button text by the best coders in the world

showing results for - "media query change button text"
Emil
08 Nov 2017
1<button type="button" class="btn btn-default btn-md btn-block">
2    <i class="fa fa-plus"></i>
3    <span class="button-text">Add New Item</span>
4</button>
5
6@media screen and (max-width: 300px) {
7    .button-text {
8        display: none;
9    }
10}