当我使用带有 susy 的固定位置元素时,我遇到了一个小问题。我知道具有固定位置的元素的大小相对于视口而不是网格。但我不知道如何解决这个问题。
我做了一支笔来说明问题:
http://codepen.io/emjay/pen/vEabNQ
这是我的susy配置:
$susy: (
columns: 12,
gutters: 1/4,
math: fluid,
output: float,
gutter-position: after,
global-box-sizing: border-box,
debug: (
image: show-columns,
output: overlay,
toggle: top right,
),
);
这里是我的代码:
HTML:
<div id="pageWrapper">
<div id="sidebar">
<p>
Header
</p>
<p>
Navigation
</p>
</div>
<div id="content">
<h1>
This is just a Test Headline to demonstrate this problem
</h1>
<p>
Lorem ipsum dolor sit amet, ...
</p>
</div>
</div>
SCSS:
body{
background-color: black;
}
#pageWrapper{
@include container(1200px left);
}
#sidebar{
@include span(3 of 12 wide);
background-color: white;
margin-right: 0; // remove gutter on the right side
height: 100%;
position: fixed;
top: 0;
left: 0;
right: 0;
}
#content{
@include span(9 of 12 last);
background-color: white;
height: 1300px; //for testing
color: white;
}
h1{
background-color: red;
}
您会看到,如果窗口大于 1200 像素 - 侧边栏使用的空间比定义的 3 列要多。
我希望有人知道如何解决这个问题。:)