答案 0 :(得分:0)
I asked the same question in Reddit here, https://www.reddit.com/r/webdev/comments/6799m7/how_can_you_have_bootstrap_responsiveness_based/.
Basically the solution is to merge the view based on landscape
or portrait
.
@media screen and (orientation: portrait){
//css
}
@media screen and (orientation: landscape){
//css
}