定制Bootstrap 4的网格系统断点
P粉696891871
P粉696891871 2023-10-18 23:01:50
0
2
680

我有一个应用程序,其中设计需要分别从台式机到平板电脑或 xl 到 lg 的 1280 断点。然而,Bootstrap 本身在 1200 处有 xl 断点。

我需要全局更改 xl 断点以进行引导。我是否必须从源文件重新编译 Bootstrap 4?

我尝试在我的 Sass 构建中设置它:

$grid-breakpoints: (
  // Extra small screen / phone
  xs: 0,
  // Small screen / phone
  sm: 576px,
  // Medium screen / tablet
  md: 768px,
  // Large screen / desktop
  lg: 992px,
  // Extra large screen / wide desktop
  xl: 1280px
);

$container-max-widths: (
  sm: 540px,
  md: 720px,
  lg: 960px,
  xl: 1220px
);

但是,全局 xl 的断点没有任何变化,它仍然会在 1200px 宽处进行断点。

P粉696891871
P粉696891871

全部回复(2)
P粉043566314

更改 $grid-breakpoints 变量就可以正常工作。请记住,您必须导入 custom.scss 中的 /bootstrapbootstrap/variables,然后在 @import bootstrap 之后。

例如:

$grid-breakpoints: (
  xs: 0,
  sm: 600px,
  md: 800px,
  lg: 1000px,
  xl: 1280px
);

演示:https://codeply.com/go/MlIRhbJYGj

另请参阅:如何扩展/使用 SASS 修改(自定义)Bootstrap 4

P粉052686710

引导程序 4.x 和 5.x

在导入 Bootstrap 源之前,您需要覆盖 $grid-breakpoints $container-max-widths 变量。这是一个工作示例(scss):

// File: theme.scss
// Override default BT variables:
$grid-breakpoints: (
        xs: 0,
        sm: 576px,
        md: 768px,
        lg: 992px,
        xl: 1200px,
        xxl: 1900px
);
    
$container-max-widths: (
        sm: 540px,
        md: 720px,
        lg: 960px,
        xl: 1140px,
        xxl: 1610px
);
    
// Import BT sources
@import "../node_modules/bootstrap/scss/bootstrap";

// Your CSS (SASS) rules here...
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板