gpt4 book ai didi

html - 在 Skeleton CSS 中更改断点

转载 作者:行者123 更新时间:2023-11-27 23:40:58 33 4
gpt4 key购买 nike

我想更改 Skeleton CSS 网格中的断点。本质上,一旦浏览器达到 1000 像素,我希望右侧的列堆叠在左侧六列下方。这是我正在使用的示例代码:

<section>
<div clas="container">
<div class="row">
<div class="six columns">
<h2>Lorem Ipsum Dolar</h2>
</div>
<div class="five columns offset-by-one">
This is my fifth column that I want to be positioned under the six columns area when the browser screen hits 1000px. This should be full width as well.
</div>
</div>
</div>
</section>

关于如何做到这一点有什么想法吗?或者是否可以设置一个媒体查询,使左边的五列堆叠在前六列之下?

最佳答案

使用媒体查询很容易。

.five.columns {
width: 100%;
margin-left: 0px;
}

@media (min-width: 1000px) {
.five.columns {
width: 39.3%;
}
}

可能需要稍微调整一下,但它确实有效。

关于html - 在 Skeleton CSS 中更改断点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31768294/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com