Answers for "how to display item in large screen only in bootstrap"

CSS
0

bootsrap view only landscape

@media (orientation:landscape) {
    .hide-on-landscape {
        display: none;
    }
}

@media (orientation:portrait) {
    .hide-on-portrait {
        display: none;
    }
}
Posted by: Guest on August-29-2021

Code answers related to "how to display item in large screen only in bootstrap"

Browse Popular Code Answers by Language