Answers for "css responive rules"

CSS
1

css media screen

@media (max-width: 991px){
    .mobile{
        display: block;
    }
}
Posted by: Guest on October-30-2020
-2

media query in css

@media screen and (min-width: 374px){
   section#rent_sectionn {
    padding: 0 20px !important;
}
 }
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language