css - Any simple way to disable Bootstrap mobile view on desktop? -


after digging around not sure if possible outside of conditionally overriding lot of css classes. there missing? have loved if viewport worked on desktop browsers, because trivial show desktop view on mobile devices using it. can't seem find way set or fake values bootstrap reading know when break mobile view. there way "trick" bootstrap thinking dimensions still desktop sized? have tried setting widths on .container , html tag, , introduce horizontal scroll bars because site built responsively ground up, inside pages still flipping mobile view. mobile view still has maintained actual mobile devices.

this situation not ideal client request trying honor. strategies @ appreciative. thank you!

use css scale() transform function on tag scale inside.

html {     transform: scale(.5);     -webkit-transform: scale(.5);     -moz-transform: scale(.5);     -ms-transform: scale(.5);     -o-transform: scale(.5);     width: 200%;     height: 200%;     margin: -50% -50%; } 

Comments

Popular posts from this blog

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -

asp.net mvc - breakpoint on javascript in CSHTML? -