gpt4 book ai didi

html - CSS3 中的上划线太长

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

我不明白为什么它比左边的文字长。其余菜单项相同。

这是我的上划线的样子。

enter image description here

Fiddle

这是列表的 HTML:

<ul class="menu">
<li><a href ="index.html">Home</a></li>
<li><a href="#">About stuff</a></li>
</ul>

这是相应的 CSS:

ul.menu {
list-style-type: none;
text-align: center;
text-color: 000000;
word-spacing: 0.3em;
letter-spacing: 0.5em;
line-height: 120%;
text-decoration: overline;
text-transform: lowercase;
text-shadow: 0.04em 0.04em #000000;
}

最佳答案

ul.menu 中删除 text-decoration: overline; 并将其放入 li

查看我的代码片段:

ul.menu {
list-style-type: none;
text-align: center;
text-color: 000000;
word-spacing: 0.3em;
letter-spacing: 0.5em;
line-height: 120%;
text-transform: lowercase;
text-shadow: 0.04em 0.04em #000000;
}

li {
text-decoration: overline;
display: inline-block;
}
<ul class="menu">
<li><a href ="index.html">Home</a></li>
<li><a href="#">About stuff</a></li>
</ul>

关于html - CSS3 中的上划线太长,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27028922/

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