gpt4 book ai didi

html - Flex-box、导航菜单和响应式

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

我有一个根据特定窗口大小调整大小的导航菜单。工作得很好,但我有一个问题,导航列表在它的父 div 中居中,但同一个 div 中的 Logo 却没有。以下是代码:

HTML

<nav id="top_menu">
<div id="logo"> <img src="images/logo.svg"> </div>
<ul class="navigation">
<li data-slide="1">Home</li>
<li data-slide="2">Skills</li>
<li data-slide="3">Over mij</li>
<li data-slide="4">Portfolio</li>
<li data-slide="5">Contact</li>
</ul>
</nav>

CSS(带有 Bourbon 混音的 Sass)

// NAVIGATION

#top_menu {
@include display(flex);
@include flex-flow(row wrap);
@include justify-content(flex-start);
@include align-content(center);
position: fixed;
width: 100%;
top: 48px;
left: 0;
background-color: white;
height: 80px;
z-index: 1;

@media screen and (max-width:960px) {
height: 60px;
top: 36px;
}

@media screen and (max-width:640px) {
top: 0;
height: auto;
@include flex-flow(column wrap);
@include justify-content(center);
@include align-content(center);
}
}

#logo {
display: block;
margin-left: 3%;
width: 12%;
max-width: 150px;
min-width: 100px;

@media screen and (max-width:640px) {
margin: 0;
width: 100%;
}

img {
position: relative;
width: 100%;
max-width: 150px;
min-width: 100px;
}

}

.navigation{
width: 82%;
list-style: none;
margin: 0;

@include display(flex);
@include flex-flow(row wrap);
@include justify-content(flex-start);
@include align-content(center);

//@media all and (max-width:800px) {
// @include justify-content(space-around);
//}

@media all and (max-width:960px) {
width: 75%;
@include justify-content(space-around);
}

@media all and (max-width:640px) {
width: auto;
@include flex-flow(column wrap);
padding: 0;
}

li {
color: black;
text-decoration: none;
display: block;
margin: 0 20px 0 20px;
padding: 10px;

font-family: 'PT Sans', sans-serif;
font-size: 20px;
text-transform: uppercase;
line-height: 40px;

@media all and (max-width:960px) {
margin: 0;
font-size: 18px;
line-height: 30px;
}

@media all and (max-width:640px) {
text-align: center;
padding: 10px;
}

&:hover,&.active {
box-shadow: 0px 10px 0px 0px rgba(245, 86, 78, 1);
color: #333;
font-weight: bold;
cursor:pointer;

@media screen and (max-width: 960px) {
box-shadow: 0px 6px 0px 0px rgba(245, 86, 78, 1);
}
}
}
}

到目前为止,我发现它并没有真正将两个 div 放在彼此的下方;将导航的宽度更改为更低或更高会更改 Logo 的位置。但是,我找不到解决这个问题的方法,也找不到让 Logo 在导航上方居中的位置。我很喜欢 flex-box,但有时有点难以理解。我在这里做错了什么?

您可以在此处查看问题:http://de-kleijn.com/test/ndk/

最佳答案

问题是当您需要使用 align-items 时,您正在使用 align-content 属性。 Align-items 用于控制元素在同一行上的对齐方式。对齐内容用于控制行相对于其他行的对齐方式。

http://codepen.io/cimmanon/pen/yAIKs

.navigation{
width: 82%;
list-style: none;
margin: 0;
border: 1px solid;

@include display-flex;
@include flex-flow(row wrap);
@include justify-content(flex-start);
@include align-items(center);
}

关于html - Flex-box、导航菜单和响应式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21075994/

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