我試圖把3 images
在left side of the div
,而無需使用margin-right
:把圖像在div的左邊,而無需使用保證金右
我想的東西有:float: left
的圖像,但它不起作用。
這是我的jsfiddle:myFiddle
HTML:
<center>
<div id="container" style="width:700px;">
<div id="header" style="background-color:rgb(249,204,157);">
<font style="margin-bottom:0; text-align: center;font-size: 50px;">avb</font>
<img src="image.jpg" style="cursor: pointer; width: 76px; height: 60px; position: fixed; margin-right: 154px;">
<img src="image.jpg" style="cursor: pointer; width: 66px; height: 59px; position: fixed; margin-right: 85px;">
<img src="image.jpg" style="cursor: pointer; width: 77px; height: 62px; position: fixed; margin-right: 5px;">
</div>
</div>
</center>
風格:
<style>
#container { float: center; }
body {
padding: 25px;
}
</style>
任何幫助表示讚賞!
移除了圖像的固定位置! –
Reather然後把'position:fixed'放在你的'img'上,放在它的_container_上。 – Vucko