我想一個讓頭酷似對於Facebook,但是當我把它修好它裏面的內容開始在窗口大小調整改變位置。 喜歡這裏http://www.housetostay.co.za/ 我怎麼能解決這個問題 下面是我的代碼如何製作一個類似於Facebook的標題?
<html>
<head>
<style>
.heading {
display:block;
top:0px;
left:0px;
right:0px;
height:20px;
position:fixed;
border:1px solid #888;
padding:0px;
text-align:center;
font-weight:bold;
color:#000;
background: #ccc;
width: 100%;
height: 100px;
z-index:3;
}
</style>
</head>
<body>
<div class = "heading">
<table id ="headertable" align="left">
<tr>
<td>
<a href="http://www.housetostay.co.za">
<h2 class= "logo">HouseToStay</h2>
<td> </td>
</a>
</td>
<td><a href="http://www.housetostay.co.za" class="button middle">How it works</a></td>
<td><a href="http://www.housetostay.co.za" class="button middle">Contact us</a></td>
<td><a href="register.php" class="button middle">PostAd</a></td>
<td><a href="jobs.php" class="button middle">Jobs</a></td>
<td><a href="http://www.housetostay.co.za" class="button middle">Buy it</a></td>
<td>
</td>
</table>
<table class ="profile">
<tr>
<td>
<h2>user</h2>
</td>
<td>
<img src="bhubezi/images/logos/nopic.png" width="50" height="40">
</td>
</tr>
</table>
</div>
所以做你的代碼的工作?你有問題嗎? – 2013-02-24 11:58:56
標題div內的內容移動調整大小 – humphrey 2013-02-24 12:01:21
嘗試添加頁邊距:0px auto; – 2013-02-24 12:04:53