誰かが基本的なHTML/CSSフロートの問題を手伝ってもらえますか?フロート左divボックスを備えた通常のdivがあります。ボーダー付きのh1が欲しかったのですが、フロート左divに重なっています。任意のヒント?以下の問題を示すサンプルコード。
[編集:この問題の画像は次のとおりです:http://anony.ws/i/2012/06/21/UCHvY.png。最終結果として、左側に重ならないように、h1に青い線を使用できるようにしたいと思います。左の列の高さは動的です]
<style>
.wrapper {width:600px;}
.boxcolumn {
float:left;
width:150px;
border:1px red solid;
margin-right:12px;
}
h1 {border-bottom:1px #CCC solid;}
<div class="wrapper">
<div class="boxcolumn">
Left Column is not a fixed height. Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a
</div>
<h1>Some Title Goes Here</h1>
blah blah blah blah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blahblah blah blah
<h1>Some Title Goes Here</h1>Left Column is not a fixed height.Left Column is not a fixed height.Left Column is not a
</div>