gpt4 book ai didi

html - 如何将标题和导航放在同一行(不起作用)

转载 作者:行者123 更新时间:2023-11-28 04:29:57 24 4
gpt4 key购买 nike

基本上发生的事情是我的 h1 和我的 nav 元素不在同一条线上。我尝试在 h1 和 nav 上添加 100% 的宽度和左右浮动属性,但它仍然不在同一行上。我在 h1 中放了一些乱码,以向您展示调平的幅度很小。帮助!

这是我的 HTML:

<!doctype html>
<html>
<head>
<title>
Personality Speakes Before You
</title>
<meta charset='utf-8'>
<link href="main.css" rel="stylesheet" type="text/css">
</head>
<body>
<header>
<h1>Anum kdljflkasjfdlajsdlfjslfjsalkdfjld;skjgl;j</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Event</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
</body>
</html>

这是我的 CSS:

 body  {
background-color: azure;
font-family: cursive;
}
header {
width: 100%;
}
h1 {
float:left;
font-size: 30px;
text-decoration: underline;
}
nav {
float: right;
}
ul {
color: darkslategray;
}

li {
display: inline;
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
}

谢谢!

最佳答案

尝试将 float 更改为 display: inline-block,并将 header 设置为 white-space: nowrap:

body  {
background-color: azure;
font-family: cursive;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
white-space: nowrap;
}
h1 {
display: inline-block;
font-size: 30px;
text-decoration: underline;
}
nav {
display: inline-block;
}
ul {
color: darkslategray;
}

li {
display: inline;
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
}
<header>
<h1>Anum</h1>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Event</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</header>

Note: Since the font sizes are so big, see the full effect in "Full page" mode

关于html - 如何将标题和导航放在同一行(不起作用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41786354/

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