我的 .left div 在 CSS 中将其宽度设置为 260px,但由于某种原因,它的计算样式出现在 980px(包装器的全宽),因此在页面上推出了另一个 fiv(div 右)。网站在这里,我正在谈论的部分是“我是谁?”中的左侧 h2 和右侧段落文本 部分。
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;
}