gpt4 book ai didi

HTML 下拉框搞砸了文本

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

我有一个使用 HTML 和 CSS 的下拉框,但是如果下拉框的任何部分与网页上的文本重叠,文本就会偏移很多。有没有一种方法可以更改我的代码,让方框隐藏文本而不是弄乱格式?

index.html:

<body>
<div id="header">
<h1>Kookerus' Projects</h1>
</div>
<div id="dropdown">
<ul>
<li><a href="http://kookerus.github.io">Home</a></li>
<li><a href="#">About</a></li>
<li>
<a href="/projects/batch-interpreter/index.html">Batch Interpreter &#9662;</a>
<ul>
<li><a href="/projects/batch-interpreter/about.html">About</a></li>
<li><a href="#">View on Github</a></li>
</ul>
</li>
<li><a href="/contact.html">Contact</a></li>
</ul>
</div>
</body>

样式.css:

#header{
height: 50px;
width: 100%;
background-color: #CC00CC;
text-align: center;
margin-left: auto;
margin-right: auto;
color: white;
margin-top: 0;
padding: 0;
border: 0;
vertical-align: baseline;
margin: 0;
padding: 0;
border: 0;
}
#nav {
width: 100%;
text-align: center;
margin-left: auto;
margin-right: auto;
color: white;
margin-top: 50px;
margin-bottom
padding: 0;
border: 0;
vertical-align: baseline;
margin: 0;
padding: 0;
border: 0;
}
#about{
width: 100%;
text-align: center;
margin-left: auto;
margin-right: auto;
margin-top: 0;
padding: 0;
border: 0;
vertical-align: baseline;
margin: 0;
padding: 0;
border: 0
}
.center { /*simple class to center the text*/
text-align: center;
}
h1 {
margin: 0;
padding: 0;
border: 0;
}
ul {
display: inline;
padding: 0;
list-style: none;
}
ul li {
float: left;
width: 150px;
text-align: center;
line-height: 21px;
}
ul li a {
display: block;
padding: 5px 10px;
color: #333;
background: #f2f2f2;
text-decoration: none;
}
ul li a:hover {
color: #fff;
background: #939393;
}
ul li ul {
display: none;
}
ul li:hover ul {
display: block; /* display the dropdown */
}

> JSFiddle

最佳答案

在你的下拉列表中 ul 使用 position: absolute 并使其父级 li 相对

ul li ul{
position: absolute;
}
ul li{
position: relative;
}

关于HTML 下拉框搞砸了文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31400123/

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