我有一个非常简单的HTML布局,其中垂直导航栏应位于Content div的左侧。两个元素都应该水平居中。
我已经设置了CSS代码使其布局如此,但它没有显示我上面说的方式。实际看起来的方式是导航栏位于左侧(x = 0)&内容div位于导航栏下方的绝对左侧。
我做错了什么?
<!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"><!-- InstanceBegin template="/Templates/homepage.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Kamalei - Home Page</title>
<style type="text/css">
<!--
html, body, div, form, fieldset, legend, label, img { margin: 0; padding: 0; } table { border-collapse: collapse; border-spacing: 0; } th, td { text-align: left; } h1, h2, h3, h4, h5, h6, th, td, caption { font-weight:normal; } img { border: 0; }
body { text-align: center; min-width: 1200px; }
/* ID elements */
#backgroundImg { z-index: -1; position: absolute; left: 0px; top: 0px; }
#heading { height: 300px; padding-top: 30px; }
#main { display: inline; }
#navBar { height: 700px; width: 200px; background: url("images/navBackground.png") no-repeat; }
#content { height: 700px; width: 800px; background: url("images/contentBackground.png") no-repeat; }
#navLinks { font: 100%/1.4 'Segoe Print'; font-weight: bold; list-style-type: none; }
#navLinks ul, li, a { color: white; }
/* Classes */
.hidden { display: none; }
.unhidden { display: block; }
-->
</style>
</head>
<body>
<div id="heading">
<img id="headingImg" src="images/logoWritting.png" alt="Kamalei Childrens Centre" width="600px" height="240px"/>
</div>
<div id="main">
<div id="navBar">
</div>
<div id="content">
</div>
</div>
<!-- Must keep the background image at the bottom of body -->
<img id="backgroundImg" src="images/background.png" alt="" width="100%" height="1100px"/>
<script type="text/javascript">
<!--
window.onresize = setBackgroundImgWidth;
-->
</script>
</body>
答案 0 :(得分:0)
您需要浮动或定位#navBar和#content。我会去漂浮:
#navBar { float:left; height: 700px; width: 200px; background: url("images/navBackground.png") no-repeat; }
#content { float:left; height: 700px; width: 800px; background: url("images/contentBackground.png") no-repeat; }
对于居中,您需要执行以下操作#main:
#main { display: block; width:1000px; margin:0 auto }
通过定义元素的宽度并将“自动”应用于左边距和右边距来实现居中工作。