0
我已經添加了一個圖像到一個div和高度自動調整。然後,我將圖像向左浮動,並使用相對定位將圖像移動到頂部..但是,bg高度保持不變。我怎樣才能自動降低高度?如何降低背景高度以使圖像底部和底部邊框處於同一水平?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS(4)</title>
<style type="text/css">
#bg{width:1500px;background-color:#FCF;overflow:auto;}
#bg img{float:right;position:relative;top:-50px;}
</style>
</head>
<body>
<div id="bg">
<img src="../../Desktop/produitsnonalimentaires/images/Produitsalimentaire.png" />
</div>
</body>
</html>
你有一些錯誤,嘗試設置位置:相對於div,然後位置:絕對img。 – baraboom 2011-06-08 18:08:22