P
P
peregarych2018-02-06 23:03:04
css
peregarych, 2018-02-06 23:03:04

Hide a specific property in bootstrap?

The question is, is it possible in bootstrap3 for a certain resolution to hide some selector properties.

For example, I have a div class="row" with the identifier "#head" and to resolve xs, I need to hide the background (img) property.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
W
weranda, 2018-02-06
@peregarych

@media screen and (max-width: 1024px) {
    #head{
        display: none;
        /*или*/
        background: none;
    }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question