gpt4 book ai didi

html - 如何阻止我的导航栏在移动设备中拆分按钮?

转载 作者:行者123 更新时间:2023-11-28 15:05:54 25 4
gpt4 key购买 nike

我是一个新手,我正在制作我的作品集以供练习,我决定让它完全响应并尽可能多地使用 flexbox。我正在使用“移动优先”的方法,所以我可以稍后修复桌面的任何丑陋之处。我的顶部导航栏在移动 View 上拆分了我的按钮。例如,“关于我”按钮分两行,“我”部分与“关于”重叠。我希望它们全部排成一行,或者分成两行,但要整齐且不重叠或切断文本。

这是我的代码:

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {

}
.nav-container {
display: flex;

}

nav {
display: flex;
font-family: "Lato", sans-serif;
flex-wrap: wrap;
position: fixed;

}

nav ul {
display: flex;
margin: 5px;
padding: 10px;
list-style-type: none;
justify-content: space-around;
width: 100%;
}

nav ul li {
margin: 5px;
padding: 5px;
}

.header-container {

}

header {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
top: 100px;
}

.headings {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
text-align: center;
}

.cv-container {
display: flex;
align-self: flex-end;
margin-left: 30px;
position: relative;
top: 30px;
right: 30px;
color: #000;
border: 1px solid #000;
}

.cv-container a,
.nav-container a {
text-decoration: none;
color: #000;
padding: 5px;
}

.cv-container a:hover,
.nav-container a:hover {
background-color: #f442aa;
}

strong {
font-style: bold;
}

header h1 {
display: flex;
align-self: center;
font-family: "Lato", sans-serif;
padding: 15px;
}

header h2 {
display: flex;
align-self: center;
font-family: "Playfair Display", serif;
padding: 15px;
}

header a {
font-family: "Lato", sans-serif;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name='viewport'
content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
<title>My Name - Web Designer &amp; Developer</title>
<link rel="stylesheet" href="styles.css"/>
<link href="https://fonts.googleapis.com/css?family=Lato:300,400,400i,700|Playfair+Display:400,400i,700,700i" rel="stylesheet">
</head>
<body>
<div class="nav-container">
<nav>
<ul>
<li><a href="#">About Me</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Links</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>


<header>
<div class="headings">
<p><h1>Virginia Balseiro</h1></p>
<p><h2>Web Designer &amp; Developer</h2></p>
</div>
<div class="cv-container">
<a href="#"><strong>DOWNLOAD CV</strong></a>
</div>
<div class="social-container">
<a></a>
<a></a>
<a></a>
</div>
</header>

我在网上发现了一些“hacks”,但我真的想以正确的方式去做并理解我在做什么。非常感谢你提前。

最佳答案

我建议您在“ul”标签上使用flex-wrap: wrap

Flex wrap 允许将元素包装成多行。

关于html - 如何阻止我的导航栏在移动设备中拆分按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49383569/

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