我試圖讓這個div一直到屏幕的右側。下面是HTML:如何在屏幕右側放置div元素
<html>
<head>
title></title>
<link rel="stylesheet" type="text/css" href="../css/style.css"/>
</head>
<h1> </h1>
<body>
<div id="bannerR">
<a href="yahoo.com" target=_blank>
<img src="yahoo.com" border=0></a>
</div>
而這裏的style.css
#header{background-color: #fff; width: 1000px; position: relative; }
#bannerL{ position: relative; top: 500px; left: 500px; }
#bannerR{ position: relative; float: right; }
body {
background-image: url("beach.gif");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
margin-top:100px;
margin-right:180px;
margin-bottom:10px;
margin-left:200px;
}
請大家幫忙,林在代碼很新的,買了一本書,但處理不當幫助。我花了幾個小時試圖得到這個並沒有用。
這是你的整個HTML文件?樣式表是否鏈接到HTML? – MxyL
http://jsfiddle.net/KV4RM/這是你的輸出嗎? –
爲什麼你的'body'標籤有空白?我猜如果你刪除了「margin-right:180px」,你的'#bannerR'將會一路向右。 – disinfor