左に画像、右にテキストがあるdivがあります。テキストが少ない場合は問題なく動作しますが、テキストを追加するとレイアウト全体が破壊されます!
最初の 2 行は問題なく動作しますが、さらにテキスト (3 行目) を追加すると、レイアウトが恐ろしくなります。
この問題を解決するにはどうすればよいですか?
CSS:
.postWidget {
clear:both;
margin-bottom: 50px;
}
.postWidget img {
float: left;
}
.postWidget .job_title {
font-size: 20px;
margin-left: 30px;
}
.postWidget .description {
margin-left: 30px;
}
.postWidget .description span {
font-size: 15px;
margin-left: 30px;
}
.postWidget span a {
color: black;
text-decoration: none;
}
.postWidget .user_desc {
margin-left: 80px;
padding-top:5px;
}
.postWidget .user_desc .name {
font-weight: bold;
}
.postWidget .user_desc .name, .profession {
font-size: 12px;
}