致力于响应式设计并逐渐失去头发和睡眠。这似乎是一个真正的 webkit 错误:http: //jsfiddle.net/TAvec/
那里的问题很清楚——webkit 将 20% 的填充解释为父内容框的 20%,而 Firefox 和 opera 将其解释为父内容框的 20%(包括父内容的填充)。
有什么想法可以在保持绝对定位的同时解决这个问题吗?
致力于响应式设计并逐渐失去头发和睡眠。这似乎是一个真正的 webkit 错误:http: //jsfiddle.net/TAvec/
那里的问题很清楚——webkit 将 20% 的填充解释为父内容框的 20%,而 Firefox 和 opera 将其解释为父内容框的 20%(包括父内容的填充)。
有什么想法可以在保持绝对定位的同时解决这个问题吗?
您可以将您的内容包装<aside>
在 a 中div
并将填充分配给它,而不是分配给<aside>
. 这样,您可以确保 FF 和 Chrome(尚未测试 O 或 IE)中的填充相对于容器呈现,即<aside>
.
<!-- HTML -->
<article>
<h1>Parent</h1>
<p>Content...</p>
<aside>
<div class="content">
<h1>Aside child</h1>
<p>The prime minister also suggested the move would have implications for the UK's EU and Nato membership.</p>
</div>
</aside>
</article>
//CSS
article{
background:chocolate;
padding-left:40%;
position:relative;
}
aside{
background:chartreuse;
position:absolute;
left:0;top:0;bottom:0;
width:20%;
}
article div.content { //'%' declarations relative to parent
width: 100%;
height: 100%;
padding: 20%;
border:20px solid black;
background-color: #fff;
}
这是在行动:http: //jsfiddle.net/KYyR7/3/