gpt4 book ai didi

html - Bourbon Neat——响应式网格

转载 作者:太空宇宙 更新时间:2023-11-04 12:23:25 24 4
gpt4 key购买 nike

我查看了 Bourbon Neat 的示例响应式网格。据我所知,我正在正确使用它。

问题

  • <div>标签都占据了自己的一行,就好像我把它们都做了一样 span-columns(12)

我的猜测是我没有正确嵌套元素或者我应该使用诸如 <section 之类的标签或 <aside>

以下是我目前为了学习这个响应式框架所拥有的...

application.html.erb

<!DOCTYPE html>
<html>
<head>
<title>LawRails</title>
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render "layouts/header" %>
<%= yield %>

</body>
</html>

header.html.erb

<div class="contain-header">
<div class = "last-names">Attorney & Attorney</div>
<div class = "contain-eight">
<div class = "street-address">250 W. Main Street Suite 9999</div>
<div class = "city-state-zip">City, US 30399</div>
</div>
</div>

header.css.scss

.contain-header {
@include outer-container;
.last-names {
@include span-columns(4);
}
.contain-eight {
@include span-columns(8);
.street-address {
@include span-columns(4 of 8);
}
.city-state-zip {
@include span-columns(4 of 8);
}
}
}

application.css.scss

@import "bourbon";
@import "neat";
@import "welcome";
@import "layout";

如前所述。 div 都占据了自己的整行。我想学习如何按照 css 的建议将所有内容分隔成一行。

最佳答案

看起来您的代码应该可以工作。请在此处查看要点:http://sassmeister.com/gist/d8f0c7ffa3ff16e93b8a

我的猜测是您没有正确导入 neat 和/或 bourbon。

在您的 application.css.scss 中确保您 @import "header"

  • 因为这是您使用 bourbon neat 定位元素的 css sass 文件

关于html - Bourbon Neat——响应式网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28198160/

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