我是CSS的新手..我已将我的psd文件转换为html / css ..现在我想将我的网页页面移动到窗口的中心..我尝试了一些代码,并且代码只对齐文本背景图片“back.gif”保留在左边..这是我的html和CSS代码“
**HTML**
<body>
<div id="main">
<div id="header">
<div id="logo">
<img src="logo.gif" />
</div>
</div>
<div id="menu">
<img src="images/menu_07.gif" />
<div id="m">
<ul>
<li> <a href="index.php">Home</a></li>
<li> <a href="pages.php">Pages</a></li>
<li> <a href="donor.php">Donor</a></li>
<li><a href="seeker.php">Seeker</a></li>
<li><a href="hospitals.php">Hospitals</a></li>
<li><a href="lifesaving.php">Life Saving Contacts</a></li>
<li><a href="contactus.php">Feedback</a></li>
</ul>
</div>
</div>
<div id="content">
<div id="center" align="center">
<h3>WELCOME TO ADMIN AREA</h3>
<p id="ajk">AJKBLOODBANK.COM</p>
<?php
echo "welcome!".$_SESSION['username'];
echo "<br>";
echo "<a href=logout.php>Logout</a> ";
?>
</div>
</div>
<div id="footer">
</div>
</div>
</body>
**CSS**
body
{
background:url(../back.gif) repeat-y;
padding-left:105px;
height:900px;
text-align: center;
margin:auto;
min-width: 760px;
}
div#main
{
width: 720px;
margin: 0 auto;
text-align: left;
}
#header
{
width:787px;
margin-top:10px;
}
#menu
{
width:787px;
float:left;
margin-top:20px;
}
#content
{
background-color:#FFF;
border:groove;
width:790px;
float:left;
padding-top:30px;
margin-top:30px;
}
#footer
{
float:left;
height:52px;
width:790px;
}
请告诉我哪里弄错了..
the diameseion of background image "backgif" = 995x1000
答案 0 :(得分:6)
无论您想要居中哪个元素 - 设置明确的宽度,然后将左/右边距设置为auto
#main { width:995px; margin:0 auto; }
...这会将元素置于其父级中心。如果您要居中#main
,它将以页面为中心(假设您的body
宽度为100%)
修改强> 的
尝试将背景图片应用于#main
而不是body
。或者,使用background-position
或速记:
body { background:url(../back.gif) repeat-y center top; }
干杯
答案 1 :(得分:4)
为了使身体元素居中,我会使用类似的东西:
.body {
width: 940px;
margin-left: auto;
margin-right: auto;
}