我无法将我的垂直导航栏放在我的内容Div的左侧。这就是我拥有的和我想要的东西:
问题在于,它是一个固定的位置,因此对于尺寸不相似的显示器来说它是不同的。所以我猜我需要相对定位,但我不太清楚如何去做。
HTML
<!DOCTYPE html>
<html>
<head>
<title> Home Page </title>
<link rel="stylesheet" type="text/css" href= "styles/styling.css" />
</head>
<div class="container">
<ul class="nav">.....(Just nav bar stuff)
<div class="content">
<h1>abcd</h1>
<p>abcd</p>
</div>
CSS
.content {
background-color: #FFFFFF;
width: 650px;
padding: 20px;
margin: auto;
word-wrap: break-word
}
.container {
position: fixed;
top: 151px;
left: 420px;
}
谢谢!
答案 0 :(得分:3)
固定位置可帮助您向下滚动时保持菜单可见。否则,你不应该使用它。
<div class="container">
<div class="one-third column">
<ul class="yourmenu">xxx</ul>
<div class="filler"></div>
</div>
<div class="two-thirds column">
Your page content here
</div>
</div>
<style>
.container {width:960px;margin:auto;}
.column {float:left;position:relative;}
.one-third {width:320px;}
.two-thirds {width:640px;}
.filler {width:100%;height:10px;}
.yourmenu {position:fixed;top:100px;} /* do not define left, because it will fix the screen and not the column div */
</style>
答案 1 :(得分:0)
使用百分比(%)代替像素(px)。