Questions tagged «tablet»

15
媒体查询:如何定位台式机,平板电脑和移动设备?
我一直在做一些关于媒体查询的研究,但我仍然不太了解如何定位某些尺寸的设备。 我希望能够定位台式机,平板电脑和移动设备。我知道会有一些差异,但是拥有可用于定位这些设备的通用系统会很好。 我发现了一些例子: # Mobile only screen and (min-width: 480px) # Tablet only screen and (min-width: 768px) # Desktop only screen and (min-width: 992px) # Huge only screen and (min-width: 1280px) 要么: # Phone only screen and (max-width:320px) # Tablet only screen and (min-width:321px) and (max-width:768px) # Desktop only screen …


5
如何使用CSS媒体查询检测设备方向?
在JavaScript中,可以使用以下方式检测方向模式: if (window.innerHeight > window.innerWidth) { portrait = true; } else { portrait = false; } 但是,有没有办法仅使用CSS来检测方向? 例如。就像是: @media only screen and (width > height) { ... }


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.