susy网格840如何设置它



我想定位2个div。150px |div宽度440px | 100px |div宽440px | 150px。我不知道如何设置它。我知道它应该很简单,但这是我与susy 的第一个项目

$susy: (
 columns: 12,
 math: fluid,
 output: float,
 last-flow: to
);
.rounded{
  @include span(6);
  border-radius: 2px;
  background-color: rgb(246, 246, 246);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  position: relative;
//left: 150px;
  top: 224px;
  width: 440px;
  height: 478px;
  overflow-x:hidden;
  overflow-y: scroll;
}
.rounded2 {
  @include span(6);
  border-radius: 2px;
  background-color: rgb(246, 246, 246);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  top: 224px;
  width: 440px;
  height: 478px;
  overflow-x:hidden;
  overflow-y: scroll;
 }
<div class="newApp">
 <h1>To do list</h1>
 <div class="rounded">
  <ul>
    {{#each tasksToDo}}
        {{>task}}
    {{/each}}
 </ul>
</div>
<h1>Done list</h1>
 <div class="rounded2">
  <ul>
    {{#each taskDone}}
        {{>done}}
    {{/each}}
  </ul>
 </div>
</div>
<template name="done">
<li class="list_item">
    <span class="text">{{title}}</span>
</li>
</template>
<template name="task">
 <li class="list_item">
    <span id="editingTask">{{> editableText collection="tasks"     field="title"}}</span>
    <br>
    <button class="completed">Completed</button>
    <button class="edit">Edit</button>
    <button class="delete">Delete</button>
</li>

https://i.stack.imgur.com/oTQnZ.jpg

这是html和pic

您当前的代码正在覆盖susy为您所做的一切。Susy设置宽度、浮动和边距或填充(用于排水沟)。下面是的sassmeister演示,使用Susy获得布局的一种方法。还有很多其他方法,因为Susy本质上是一个计算器,希望你提供大部分意见。

$susy: (
  columns: 2,
  column-width: 440px,
  gutters: 100/440,
  gutter-position: split,
);
.newApp {
  padding: gutter()*2;
}
.rounded,
.rounded2 {
  @include span(1);
}

不过,目前您的h1元素正在阻碍您。您必须将它们包装在布局块中。这只是CSS浮动的一个问题。

相关内容

  • 没有找到相关文章

最新更新