I can’t get an element to wrap in a responsive layout

Asked

Viewed 30 times

0

1 answer

0

You need to use a media querie to control the screen, follow example:

@media screen and (max-width:992px) {   
     //controlar as classes
     .logo {
         font-size: 20px;
     }
}

In the pictures use max-width: 100%;

Browser other questions tagged

You are not signed in. Login or sign up in order to post.