有没有办法强制 IE 或 FF 进入手持模式以测试“@media手持” 样式表?
有没有办法强制 IE 或 FF 进入手持模式来测试“@media手持”样式表?
或者,我是否必须发布页面并使用我的黑莓进行测试?
我更愿意测试这个而不将应用程序推送到实时服务器,因为应用程序已经在使用中。
有什么想法给我吗?
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?
I'd prefer to test this without pushing the application to the live server as the application is already in use.
Any ideas for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
FF 的 Web 开发人员工具栏可让您测试网页 media=handheld
Web Developer Toolbar for FF lets you to test webpages media=handheld
媒体查询有一个简单的方法:
这将使实现媒体查询的浏览器使用当您将窗口大小调整到小于 500 像素时,您的手持设备 css 会发生变化。
There's a simple way with media queries:
This will make browsers that implement media queries use your handheld css when you resize the window to less than 500px.
关于这个问题的一些帮助:
您用什么来测试手持设备你的网站上有 CSS 吗?
Some help on this question:
What do you use to test the handheld css on your website?
我发现 Blackberry 浏览器完全崩溃了,在 Firefox 甚至 IE 中进行测试都没有意义。 Netscape 4 看起来是最接近的。
如果你想在BB上获得不错的体验,那么你必须拥有一个BB模拟器。 它可以从 RIM 网站免费获得(您需要点击几个表格)。
如果您只想在移动浏览器下进行测试,请尝试Opera Mini 在线模拟器 或 小屏幕视图中的桌面 Opera(获取版本 7.6 或如果您想要与当今智能手机上使用的引擎完全相同的引擎,请从档案中获取 8.0)。
或者将
html {max-width:240px}
添加到您的样式中,并使用media=screen
而不是handheld
进行测试。I've found Blackberry browser to be so utterly broken, that testing in Firefox or even IE doesn't make sense. Netscape 4 seems like closest approximation.
If you want achieve decent experience on BB, then you have to get a BB simulator. It's available for free from RIM website (you need to click through a few forms).
If you just want to test under a mobile browser, than try Opera Mini simlator on-line or desktop Opera in Small Screen view (get version 7.6 or 8.0 from archives if you want exactly the same engine as used today on smartphones).
Or add
html {max-width:240px}
to your styles and for testing serve them withmedia=screen
rather thanhandheld
.