我正在为Jekyll(-v 0.12.1)创建一个博客,并且遇到一个问题,即测量index.html的窗口大小为1103px,然后帖子页面上相同的未更改窗口将测量为1088px(使用XScope)。
这导致标题标识在页面之间“移动”几个像素,我不能为我的生活找出原因 - 除了设置边距/宽度会减少帖子上的窗口测量页面(但不在索引上)。
---
layout: default
---
<section class="post">
<div class="container">
<article class="centered">
<header class="post-header">
<div class="post-meta">{{ page.date | date: "%b %d, %Y" }}</div>
<h1 class="post-title">
<a href="{{ page.url }}">{{ page.title }}</a>
</h1>
</header>
<div class="post-body">
{{ content }}
</div>
</article>
</div>
</section>
.post {
margin-top: 2rem;
.post-header {
margin-bottom: 2rem;
.post-meta {
margin-bottom: 0.3rem;
font-family: $font-family-sans;
color: $light-text-color;
font-weight: 300;
text-align: center;
font-size: 0.8rem;
text-transform: uppercase;
}
.post-title {
@extend .beta;
@extend %hN;
font-family: "proxima-nova-alt-ext-cond", sans-serif;
text-transform: uppercase;
text-align: center;
}
}
}
.container {
width: 85%;
margin-left: auto;
margin-right: auto;
max-width: 63em;
}
.centered {
max-width: 31rem;
width: 80%;
margin: 0 auto;
display: block;
}