iPad Safari CSS/Javascript

发布于 2024-11-02 17:08:04 字数 194 浏览 1 评论 0原文

我有 2 个问题;

  1. 为了修复 iPad Safari 问题,我们是否只需要更新 CSS...我的意思是,是否存在任何可能需要更新 JS 才能修复 iPad 的问题。

  2. 同样通过JS,用户代理检查是唯一的选项还是CSS中使用的@media也可以在JS中使用,作为if..else条件?

I have 2 questions;

  1. For fixing iPad Safari issues, do we only need to update in the CSS...I mean can there be any kind of issue which might require a JS update as well to fix for iPad.

  2. Also through JS, is user-agent check the only option OR is @media which is used in CSS can be used in JS as well, as an if..else condition?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

李白 2024-11-09 17:08:04
  1. 取决于您想要做什么,但是 Mobile Safari 有一个非常好的渲染引擎,我不知道您需要在哪里使用 JS 调整 CSS 才能使其工作。

  2. 是的,您可以使用以下语法仅定位 iPad:

@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
}

更多信息

  1. Depends what you're trying to do, but Mobile Safari has a very good rendering engine I don't see where you would need to tweak CSS with JS to make it work.

  2. Yes you can target just the iPad with the following syntax:

"

@media only screen and (device-width: 768px) {
  /* For general iPad layouts */
}

More here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文