次の図に示すように、div の下部にぴったりと収まる段落タグ内にテキストがあります: http://i44.tinypic.com/e05s0z.png
これを修正するために div の下部にパディングを配置することもできますが、そのページにあるアイテムの数によっては、複数の div が存在する可能性があります。
私がする必要があるのは、最後の div の終わり (class="article") と段落タグ内のテキストの間にスペースを入れることです。
article クラスの CSS は次のとおりです。
.article {
padding:10px;
overflow:auto;
}
段落タグ付きのテキスト
<p>Herkimer County Community College does not
discriminate on the basis of race, color, sex,
national origin, age, handicap, or marital status
in admission, employment, or in any aspect regarding
the conduct of College business.</p>
私は何をすべきか?