我在設置div
背景圖像的最大高度時遇到了一些問題。最大高度應該是圖像的高度,不能大於此值。如果div
中的內容太多,它只是放大圖片。當背景圖像結束時,我希望它爲我的其餘內容繼續使用背景顏色。這裏是我試過的代碼Div背景圖像的最大尺寸
<style>
.profilbg {
background: url(<?php echo $uin->backgroundimg; ?>);
background-repeat: no-repeat;
background-size:cover;
}
.profilen {
width: 100%;
text-align: left;
clear: both;
}
</style>
<div class="profilen">
<div class="profilbg">
<?php echo nl2br($uin->profilen); ?>
</div>
</div>
有了這段代碼,背景圖片只是放大並且變大,如果內容太多的話。