gpt4 book ai didi

html - 我的导航不在我想要的位置

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

如果您运行代码,您会看到我在左上角有一个带文本的标题,但我希望我的导航位于右上角,但它只出现在标题的底部。我尝试检查元素并尝试解决问题,但没有任何乐趣。这是我的代码。

 html, body {
height: 100%;
width: 100%;
margin: auto;
padding: auto;
}

h1 {
margin: 0;
padding: 0;
}

ul {
margin: 0;
padding: 0;
}

.ct {
font-weight: lighter;
}

header {
position: fixed;
top: 0;
left: 0;
height: 75px;
width: 100%;
background: -webkit-linear-gradient(top, #3a537a 1%,#204377 100%);
-webkit-box-shadow: 0px 9px 35px -5px rgba(0,0,0,0.75);
}

header h1 {
font-size: 30px;
font-family: Roboto;
color: #ffffff;
line-height: 75px;
padding-left: 15px;
font-weight: 400;
letter-spacing: 0.05em;
}

header nav ul{
float: right;
}

header nav ul li {
display: inline-block;
}
     <!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>CT Designs</title>
<!-- Stylesheets-->
<link rel="stylesheet" type="text/css" href="css/index.css">
<!-- Fonts-->
<link href="https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i" rel="stylesheet">
</head>

<body>
<header>
<h1><span class="ct">CT</span> Designs</h1>
<nav>
<ul>
<li>Home</li>
<li>About Me</li>
<li>Projects</li>
<li>Contact</li>
</ul>
</nav>
</header>
</body>

</html>

最佳答案

您可以将 float: left 添加到 header h1,这将允许您的导航列表按照您指定的方式向右浮动。

但我会在标题上使用 flexbox 和 justify-content: space-between 将元素推到左/右,然后使用 align-items 垂直对齐标题内容。

html,
body {
height: 100%;
width: 100%;
margin: auto;
padding: auto;
}

h1 {
margin: 0;
padding: 0;
}

ul {
margin: 0;
padding: 0;
}

.ct {
font-weight: lighter;
}

header {
position: fixed;
top: 0;
right: 0;
height: 75px;
width: 100%;
background: -webkit-linear-gradient(top, #3a537a 1%, #204377 100%);
-webkit-box-shadow: 0px 9px 35px -5px rgba(0, 0, 0, 0.75);
display: flex;
justify-content: space-between;
align-items: center;
}

header h1 {
font-size: 30px;
font-family: Roboto;
color: #ffffff;
line-height: 75px;
padding-left: 15px;
font-weight: 400;
letter-spacing: 0.05em;
}

header nav ul {
float: right;
}

header nav ul li {
display: inline-block;
}
<header>
<h1><span class="ct">CT</span> Designs</h1>
<nav>
<ul>
<li>Home</li>
<li>About Me</li>
<li>Projects</li>
<li>Contact</li>
</ul>
</nav>
</header>

关于html - 我的导航不在我想要的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42726048/

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