なぜこれが起こるのか私にはわかりません。私がこれを修正できる唯一の方法は、テキストの後にたくさんの休憩を入れることですが、明らかにこれは許容できる解決策ではありません。
分離されたCSS:
.center_column {
max-width: 892px;
float: left;
}
.content {
width: 892px;
background-color: #FFF;
background-image: url("style/contentpost.png");
background-repeat: no-repeat;
border-style: solid;
border-width: 2px;
border-color: #7699bb;
border-radius: 10px;
}
.content_wrap {
margin-top: 40px;
margin-left: 20px;
margin-right: 20px;
margin-bottom: 20px;
text-align: left;
}
.text {
width: 100%;
margin-top: 20px;
text-align: justify;
text-justify: distribute;
font-weight: normal;
font-size: 16px;
}
分離されたHTML:
<div class="center_column">
<div class="content">
<div class="content_wrap">
<div class="text">
<img src="image">Text
</div>
</div>
</div>
</div>
なぜこれが起こるのですか?誰かがそれを修正する方法を教えてもらえますか?前もって感謝します :)