所有bootstrap断点都已弃用?

时间:2014-12-02 01:43:44

标签: css twitter-bootstrap less

查看variables.less(以及来自google搜索),看起来所有bootstrap的断点更少的变量都被弃用了。它是否正确?如果我们想根据bootstrap的屏幕大小断点分配样式,有人知道我们应该使用什么吗?使用带LESS的Bootstrap v3.1.1。感谢。

//== Media queries breakpoints
//
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.

// Extra small screen / phone
//** Deprecated `@screen-xs` as of v3.0.1
@screen-xs:                  480px;
//** Deprecated `@screen-xs-min` as of v3.2.0
@screen-xs-min:              @screen-xs;
//** Deprecated `@screen-phone` as of v3.0.1
@screen-phone:               @screen-xs-min;

// Small screen / tablet
//** Deprecated `@screen-sm` as of v3.0.1
@screen-sm:                  768px;
@screen-sm-min:              @screen-sm;
//** Deprecated `@screen-tablet` as of v3.0.1
@screen-tablet:              @screen-sm-min;

// Medium screen / desktop
//** Deprecated `@screen-md` as of v3.0.1
@screen-md:                  992px;
@screen-md-min:              @screen-md;
//** Deprecated `@screen-desktop` as of v3.0.1
@screen-desktop:             @screen-md-min;

// Large screen / wide desktop
//** Deprecated `@screen-lg` as of v3.0.1
@screen-lg:                  1200px;
@screen-lg-min:              @screen-lg;
//** Deprecated `@screen-lg-desktop` as of v3.0.1
@screen-lg-desktop:          @screen-lg-min;

1 个答案:

答案 0 :(得分:42)

@ seven-phases-max说的是什么。 @screen-{sm,md,lg}-min变量是您应该使用的变量。其他人已被弃用,赞成这些。

并且@screen-xs-min已被弃用,因为XS没有最窄的屏幕尺寸(除非您想要计算1px),因为它是最小的断点。 (同样,LG没有最大宽度。)