私はCSSの専門家ではありませんが、この望ましくない動作を引き起こす可能性のあるアイデアが不足しています. div
サイトのメイン セクションの背景としてを使用したいと考えています。div content
私の中にたくさんのコンテンツがあると、div content_wrapper
完全に展開しません。これは私のHTMLのセクションです
<div class="content_wrapper">
<div class="content">
<h1>Some heading</h1>
<p>lot's of text</p>
</div>
<footer>
<div id="foot">
<a id="disclaimer" href="disclaimer.html"> disclaimer</a>
</div>
</footer>
</div>
そして.css。
.content_wrapper{
position: absolute;
width: 100%;
height: 100%;
top: 215px;
background-color: #EEE;
}
.content{
z-index: 5;
float:left;
margin: 50px 0 50px 20px;
width: 75%;
padding: 20px;
background-color: #FFF;
border-left: dashed 1px #CCC;
border-top: dashed 1px #CCC;
-webkit-border-top-left-radius: 25px;
-moz-border-radius-topleft: 25px;
border-top-left-radius: 25px;
}
何が起こっているのか、そしてその理由は何ですか?