我想定位2格。 150px | div宽度440px | 100px | div宽度440px | 150像素。我不知道如何设置。我知道应该很简单,但这是我的第一个值得怀疑的项目

$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>




http://imgur.com/TRp9iJd

这是HTML和图片

最佳答案

您当前的代码将覆盖susy为您所做的一切。 Susy设置宽度,浮点数和边距或填充(对于装订线)。这是使用Susy获取布局的一种方法的sassmeister demonstration。由于Susy本质上是一个计算器,并且希望您提供大多数意见,因此会有许多其他方法。

$susy: (
  columns: 2,
  column-width: 440px,
  gutters: 100/440,
  gutter-position: split,
);

.newApp {
  padding: gutter()*2;
}

.rounded,
.rounded2 {
  @include span(1);
}


不过,目前您的h1元素正在妨碍您。您必须将它们包装在布局块内。那只是CSS浮动的问题。

关于css - 可疑网格840如何设置,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34548413/

10-11 12:31