gpt4 book ai didi

html - (HTML) 如何在边缘左侧移动导航栏

转载 作者:行者123 更新时间:2023-11-28 02:51:58 26 4
gpt4 key购买 nike

我是 html/css 的新手,我正在尝试编辑着陆页。我几乎明白了,我只有一个问题,我似乎找不到解决方法。

我想把这个导航栏移到我网站的最左边: enter image description here

我想我需要在此代码中插入一些东西,但不知道它是什么。

ul {
float: left;
margin: 30px 0 50px 0;
font-family: 'Roboto', sans-serif;
border-radius: 10px;
list-style-type: none;
margin: 0;
padding: 0;
width: 200px;
background-color: #010c15;
}

li a {
display: block;
color: white;
padding: 8px 16px;
text-decoration: none;
}

li a:hover {
border-radius: 10px;
background-color: #0099ff;
color: white;
}

感谢您的回答。

最佳答案

您可以尝试添加以下内容:

ul{
position:absolute;
left: 0;
....
}

此外,您似乎还列出了两次 margin

关于html - (HTML) 如何在边缘左侧移动导航栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39031242/

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