我是初學者級別的網頁設計師。這個問題可能已經被問到了,但我也提到了答案,但他們沒有幫助。 我的問題是我有div
稱爲「標題」和3 012這個div
裏面的div。這些未與父母div
中的中心對齊。我已經嘗試了很多答案,但他們不工作。div中的居中div
這裏是我的代碼:
#header {
height: 176px;
text-align: center;
position: absolute;
}
#header div {
display: inline;
text-align: center;
margin: auto;
float: left;
position: relative;
}
#logo {
height: 156px;
width: 218px;
background-image: url(../images/logo_03.jpg);
}
#tagline {
width: 250px;
}
#badge {
width: 300px;
}
這裏是HTML代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Ebhar media</title>
<style type="text/css">
</style>
<link href="style/homestyle.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
min-width:1407px;
}
</style>
</head>
<body leftmargin="0px" topmargin="0px" marginwidth="0px" marginheight="0px">
<div id="base">
<div id="header" align="center">
<div id="logo"></div>
<div id="tagline">YOUR SUCESS IS OUR SUCESS</div>
<div id="badge">Content for id "badge" Goes Here</div>
</div>
<div id="navbar">Content for id "navbar" Goes Here</div>
</div>
</body>
</html>
您還需要向我們展示您的HTML標題,以及您真正想要看到的內容。 – KaraokeStu
一個可能的問題是你的'#頭部'由於'position:absolute'而失去了它的全部寬度'' - 如果你給它'寬度:100%會發生什麼?' – xec
@KaraokeStu我已經添加了html代碼 – sam