Is there a way to force IE or FF into a handheld mode for testing “@media handheld” stylesheets?

后端 未结 4 945
南笙
南笙 2021-01-20 05:50

Is there a way to force IE or FF into a handheld mode for testing \"@media handheld\" stylesheets?

Or, do I have to publish the pages and test with my Blackberry?

4条回答
  •  孤街浪徒
    2021-01-20 06:11

    There's a simple way with media queries:

    @media handheld, screen and (max-width: 500px) { /* your css */ }
    

    This will make browsers that implement media queries use your handheld css when you resize the window to less than 500px.

提交回复
热议问题