我是HTML/CSS的總新手,但是我無法集中固定的h1元素。它拒絕將自己居中並粘在頁面的左側。我嘗試將邊距設置爲自動,但它沒有做到這一點。下面的代碼:如何居中固定的元素?
h1 {
color: #580101;
font-family: RobotoRegular;
position: fixed;
text-align: center;
}
* {
background-color: #ecebe9;
}
#navbar {
color: #000653;
background-color: #00001a;
height: 40px;
border-radius: 3px;
}
.sidebar {
background-color: black;
width: 90px;
height: 500px;
float: left;
margin: 30px 0px 0px 0px;
}
和HTML:
<!DOCTYPE html>
<html>
<head>
<link href="Fonts/stylesheet.css" rel="stylesheet" type="text/css">
<title>Webpage</title>
</head>
<body>
<div id="navbar"></div>
<div class="sidebar"></div>
<h1>Hello World!</h1>
</body>
</html>
所以,我應該怎麼辦?
您是否想讓h1靠近div.sidebar? h1會低於目前的兩個div以上...? – cliffbarnes 2013-02-23 06:37:33
對反對票沒有評論?!?!?! – cliffbarnes 2013-02-23 06:38:30