Answers for "min width"

CSS
1

css media screen

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

html min width

@media (min-width: 1600px) {
	display: none;
}
Posted by: Guest on January-22-2021

Browse Popular Code Answers by Language