gpt4 book ai didi

css - 居中一个 div,然后在它旁边固定一个导航

转载 作者:太空宇宙 更新时间:2023-11-04 14:57:09 25 4
gpt4 key购买 nike

我需要一个居中的 960px <div> .然后我需要一个 100px <nav>固定显示在 960px div 的左侧。所以 <nav>始终在 View 中,并触及居中的 960px <div> .

我该怎么做?

关闭的 jsFiddle:http://jsfiddle.net/hcsJ9/

这里的主要问题是导航需要接触到 960px 的 div。不接触浏览器的边缘。尝试水平调整浏览器的大小,看看它是如何粘在窗口而不是内容上的。

960px 的 div 必须居中。您不能将两者都放在一个 960px 的 div 中。

最佳答案

你可以很容易地这样做:http://codepen.io/pageaffairs/pen/Gtzqu

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">

<style media="all">

nav {
position: fixed;
top: 0px;
left: 50%;
width: 100px;
margin-left: -250px;
}

.centered300 {
width: 300px;
margin-left: auto;
margin-right: auto;
position: relative;
}

.item {
padding: 10px;
background: rgba(0,0,0,0.1);
margin-bottom: 5px;
}


</style>

</head>
<body>
<nav>
<p>Link 1</p>
<p>Link 2</p>
<p>Link 3</p>
</nav>

<section class="centered300">
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
<div class="item">
<p>Hello I'm a bunch of page content. I say random stuff blah blah blah.</p>
</div>
</section>

</body>
</html>

关于css - 居中一个 div,然后在它旁边固定一个导航,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16876726/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com