实时代码
我试图让我的 maincontent divclass="mc"
只出现在屏幕底部的 10% 上。允许用户查看尽可能多的背景图像,同时仍然允许用户看到文章的标题。
我的解决方案是将 a 设置.mc
为 100% 高度并从视口大小的底部减去它。全部在 css 中完成
CSS
.mc {
height:100%;
width:100%;
background:#fff;
z-index:1;
position:absolute;
bottom:-90%;
}
我的问题:当内容变得大于 100% 高度时,它就会陷入空白。我试过最小高度;不幸的是,它更糟糕地破坏了代码。滚动到LIVE CODE底部 以查看问题
或者
错误的图片(你可以告诉它从 .box-shadow(); 结束)
这是它应该看起来的样子
HTML
<article class="mc">
<section class="cc">
<div class="margin_wrapper">
<header>
<hgroup>
<h1 class="at">rocking grass out styles for everyone.</h1>
<h2 class="ast">The you mice structure for to of almost ability an trying the when designer
dissolute that constructing in quickly distinct...</h2>
</hgroup>
</header>
<h3 class="title_header">the good</h3>
<p>...</p>
<h3 class="title_header">the bad</h3>
<p>...</p>
<h3 class="title_header">the ugly</h3>
<p>...</p>
</div>
</section>
<aside></aside>