gpt4 book ai didi

html - 仅下划线文本不再

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

如果运气不好,我已经完成了大部分我能找到的东西。我只想从文本链接的开头到结尾给文本链接加下划线。我认为这应该非常简单。我正在处理的网站位于:

http://tahoe-luxury-properties.com/index4.html

顶部导航中的链接在底部有边框,但它们比文本链接扩展得更大。我正在使用以下 CSS:

.hot-menu {
font-size: 13px;
letter-spacing: 1.1px;
font-weight: 400;
font-family: "Oswald", Arial, Helvetica;
line-height: 20px;
float: left;
text-align: center;
border-bottom-color: #0CF;
border-bottom-style: solid;
display: table;
border-bottom-width: fit-content;
margin: 5px;
}

如果有人有任何想法那就太好了。谢谢。 -贝丝

最佳答案

减少填充,增加边距。你的<a class='hot-menu'>标签从 li a 继承了 11px 的水平填充.边框将跨越填充,但不会跨越边距。运行代码片段以查看比较:

.hot-menu {
font-size: 13px;
letter-spacing: 1.1px;
font-weight: 400;
font-family: "Oswald", Arial, Helvetica;
line-height: 20px;
float: left;
text-align: center;
border-bottom-color: #0CF;
border-bottom-style: solid;
display: table;
border-bottom-width: fit-content;
margin: 5px;
padding: 7px 11px; /* <-- This is inherited from li a */
}

.hotter-menu {
font-size: 13px;
letter-spacing: 1.1px;
font-weight: 400;
font-family: "Oswald", Arial, Helvetica;
line-height: 20px;
float: left;
text-align: center;
border-bottom-color: #0CF;
border-bottom-style: solid;
display: table;
border-bottom-width: fit-content;
margin: 5px 10px; /* <-- Fix */
padding: 7px 0px; /* <-- Fix */
}
<a class="hot-menu">Old Version</a>
<a class="hotter-menu">New Version</a>

关于html - 仅下划线文本不再,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39576456/

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