gpt4 book ai didi

html - 菜单下方出现 CSS 点

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

好吧,问题很简单,但我不确定如何解决。

在我创建这段代码后,菜单下方出现了类似小点的东西。

查看图片以进一步了解它。

Purple link dots

代码

#MenuID li {
color: white;
display: inline-block;
list-style: none;
background-color: rgba(255, 146, 0, 0.5);
font-size: 20px;
position: relative;
left: 220;
top: -48;
font-weight: bold;
width: 10%;
text-align: center;
border: 1px solid black;
}
#MenuID li:hover {
background-color: rgba(255, 255, 0, 0.5);
}
#MenuID li a {
text-decoration: none;
color: white;
}
<ul id="MenuID">
<li> <a href="index.html"> Home </li>
<li> <a href="index.html"> Forum</li>
<li> <a href="index.html"> Website</li>
</ul>

最佳答案

你错过了 </a></li> 之前并使用 min-widthli ,再加上你在 left 中缺少单位和 top

#MenuID li {
color: white;
display: inline-block;
list-style: none;
background-color: rgba(255, 146, 0, 0.5);
font-size: 20px;
position: relative;
left: 220px;
/* top: -48px; commented so you can see demo*/
font-weight: bold;
min-width: 10%;
text-align: center;
border: 1px solid black;
}
#MenuID li:hover {
background-color: rgba(255, 255, 0, 0.5);
}
#MenuID li a {
text-decoration: none;
color: white;
}
<ul id="MenuID">
<li> <a href="index.html"> Home</a>
</li>
<li> <a href="index.html"> Forum</a>
</li>
<li> <a href="index.html"> Website</a>
</li>
</ul>

关于html - 菜单下方出现 CSS 点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36725121/

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