设计最受欢迎的断点是什么?

时间:2014-09-15 06:35:58

标签: css3 responsive-design media-queries

从事大型内容项目,进行一些前期研究。

1 个答案:

答案 0 :(得分:0)

就个人而言,我喜欢引用流行的框架并查看它们支持的内容。例如,Zurb的基金会使用以下断点(并且是移动优先的,需要考虑的事情......):

// Small screens
@media only screen { } /* Define mobile styles */

@media only screen and (max-width: 40em) { } /* max-width 640px, mobile-only styles, use when QAing mobile issues */

// Medium screens
@media only screen and (min-width: 40.063em) { } /* min-width 641px, medium screens */

@media only screen and (min-width: 40.063em) and (max-width: 64em) { } /* min-width 641px and max-width 1024px, use when QAing tablet-only issues */

// Large screens
@media only screen and (min-width: 64.063em) { } /* min-width 1025px, large screens */

@media only screen and (min-width: 64.063em) and (max-width: 90em) { } /* min-width 1025px and max-width 1440px, use when QAing large screen-only issues */

// XLarge screens
@media only screen and (min-width: 90.063em) { } /* min-width 1441px, xlarge screens */

@media only screen and (min-width: 90.063em) and (max-width: 120em) { } /* min-width 1441px and max-width 1920px, use when QAing xlarge screen-only issues */

// XXLarge screens
@media only screen and (min-width: 120.063em) { } /* min-width 1921px, xxlarge screens */

http://foundation.zurb.com/docs/media-queries.html

或者,您可以查看Bootstrap正在做什么(再次,“移动优先”)......

/* Extra small devices (phones, less than 768px) */
/* No media query since this is the default in Bootstrap */

/* Small devices (tablets, 768px and up) */
@media (min-width: @screen-sm-min) { ... }

/* Medium devices (desktops, 992px and up) */
@media (min-width: @screen-md-min) { ... }

/* Large devices (large desktops, 1200px and up) */
@media (min-width: @screen-lg-min) { ... }

http://getbootstrap.com/css/

我喜欢认为随着新设备问世(iPhone 6/6 Plus),这些框架将在用户收到反馈时进行更新。

希望这有帮助!