I want to hide images on mobile devices in portrait orientation but show on landscape.
How it is possible with Bootstrap ?
Thanks :)
Bootstrap don't have orientation based classes. But you can simply write them yourself using media queries in css.
@media (orientation:landscape) {
.hide-on-landscape {
display: none;
}
}
@media (orientation:portrait) {
.hide-on-portrait {
display: none;
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With