私の .left div は、CSS で幅が 260px に設定されていますが、何らかの理由で、計算されたスタイルが 980px (ラッパーの全幅) で表示されるため、ページ上で別の 5 つ (div 右) を押し出しています。サイトはここにあり、私が話しているセクションは、左側の h2 と右側の「who am i?」の段落テキストです。セクション。
HTML
<div id="topwrapper">
<div class="left">
<h2>I create films <span class="green">//</span></h2>
<h2>I dance <span class="green">//</span></h2>
<h2>I do silly things <span class="green">//</span></h2>
<h2>I explore <span class="green">//</span></h2>
</div>
<div class="right">
<p>lorem ipsum (changed as text is wordy)</p>
<p>lorem ipsum (changed as text is wordy)</p>
<p>lorem ipsum (changed as text is wordy)</p>
</div>
</div>
CSS
.left {
width:250px;
float:left;
text-align:right;
padding-right:50px;
}
.right {
float:right;
width:680px;
}