搜索

首页  >  问答  >  正文

定制Bootstrap 4的网格系统断点

我有一个应用程序,其中设计需要分别从台式机到平板电脑或 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粉696891871P粉696891871455 天前755

全部回复(2)我来回复

  • P粉043566314

    P粉0435663142023-10-19 20:06:59

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

    例如:

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

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

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

    回复
    0
  • P粉052686710

    P粉0526867102023-10-19 00:57:43

    引导程序 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...
    

    回复
    0
  • 取消回复