在我的網站,我允許用戶發表評論有名稱和圖片。我注意到一個問題是,當某個人在使用html代碼發表評論時發佈了更大的圖片時,它將用盡評論框。所以我想要的東西應該留在評論框內。無論他們發佈多大的圖片。我已經發布了所有的細節,請親切地幫助感謝:|我的評論用完評論箱
我的HTML
<div class="mycomment">
<div id="postpic">
<img id="profile_pic" width="50px" height="150px" src="image/user/1.gif" class="">
</div>
<div class="mycommentpost">
<a class="postername" href="profile.php?userID=1">Deepak Kumar: </a><br>
<img src="http://i00.i.aliimg.com/wsphoto/v0/789295022/-font-b-Easter-b-font-day-font-b-Bunny-b-font-ears.jpg" width="650" height="350" alt="">
</div>
</div>
我的CSS:
.mycomment {
font-weight: normal;
color: #000000;
border: 2px solid #DEDEDE;
letter-spacing: 1pt;
font-family: arial, helvetica, sans-serif;
float: left;
width: 550px;
margin: 20px 0;
}
#postpic {
float: left;
width: 70px;
}
.mycommentpost {
font-weight: normal;
color: #000000;
letter-spacing: 1pt;
width: 480px;
float: right;
}
.postername {
color: #580000;
font-weight: bold;
font-size: 1em;
text-decoration: none;
}
評論這裏只是一個畫面:
<img src="http://i00.i.aliimg.com/wsphoto/v0/789295022/-font-b-Easter-b-font-day-font-b-Bunny-b-font-ears.jpg" width="650" height="350" alt="">
解決:通過添加此 - >
.mycommentpost > img{
max-height: XXXpx !important;
max-width: XXXpx !important;
}
縮小圖像的寬度和高度 –