purecss.io 中的容器 bootstrap class 是什么?

What's the equivalent of the container bootstrap class in purecss.io?

我正在为我的项目使用 purecss

我想像使用 bootstrap 容器 class 一样将我的所有内容中心都放在我的页面上。

我尝试使用 purecss 网格来使用不同的东西,但我不知道该怎么做。

.centered{
  margin: 0 auto;
  width: 80%;
}

@media screen and (min-width: 480px) {
    .centered{
          margin: 0 auto;
          width: 95%;
        }
 }

 <div class="centered"> </div>

只相信来源年轻的卢克:
https://github.com/twbs/bootstrap/blob/master/dist/css/bootstrap.css

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

只有在原始问题更新后,我才意识到你指的是 Pure 框架。

我查看了来源 https://github.com/yahoo/pure/blob/master/src/grids/css/grids-core.css 的来源,发现它没有在 pure-g 上添加任何大小,它是一个网格包装器,就像 [=28= 中的 container ]Bootstrap.

因此,Pure 框架比 Bootstrap 更通用,您指定宽度是完全合理的自己把那个容器放到你想要的任何地方。

只需将 Bootstrap container 规则应用到 pure-g class:

.pure-g {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .pure-g {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .pure-g {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .pure-g {
    width: 1170px;
  }
}

container 值跟随 Boostrap 4.4,
https://getbootstrap.com/docs/4.4/layout/overview/

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
} 
@media (min-width: 576px) {
    .container {
        width: 540px;
    }
}
@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}