gpt4 book ai didi

html - 内联元素在悬停时变为粗体时移动

转载 作者:行者123 更新时间:2023-11-28 07:37:41 27 4
gpt4 key购买 nike

我使用 HTML 列表和 CSS 创建了一个水平菜单。一切正常,除非您将鼠标悬停在链接上。你看,我为链接创建了一个粗体悬停状态,现在菜单链接由于粗体大小的差异而移动。

我遇到了和this SitePoint post一样的问题.但是,该帖子没有适当的解决方案。我到处搜索解决方案,但找不到。当然,我不能是唯一一个尝试这样做的人。

有没有人有什么想法?

P.S: 我不知道菜单项中文本的宽度,所以我不能只设置 li 项的宽度。

.nav { margin: 0; padding: 0; }
.nav li {
list-style: none;
display: inline;
border-left: #ffffff 1px solid;
}
.nav li a:link, .nav li a:visited {
text-decoration: none;
color: #000;
margin-left: 8px;
margin-right: 5px;
}
.nav li a:hover{
text-decoration: none;
font-weight: bold;
}
.nav li.first { border: none; }
<ul class="nav">
<li class="first"><a href="#">item 0</a></li>
<li><a href="#">item 1</a></li>
<li><a href="#">item 2</a></li>
<li><a href="#">item 3</a></li>
<li><a href="#">item 4</a></li>
</ul>

最佳答案

预设宽度 通过使用一个不可见的伪元素,它具有与父悬停样式相同的内容和样式。使用数据属性,如 title,作为内容的来源。

li {
display: inline-block;
font-size: 0;
}

li a {
display:inline-block;
text-align:center;
font: normal 16px Arial;
text-transform: uppercase;
}

a:hover {
font-weight:bold;
}

/* SOLUTION */
/* The pseudo element has the same content and hover style, so it pre-sets the width of the element and visibility: hidden hides the pseudo element from actual view. */
a::before {
display: block;
content: attr(title);
font-weight: bold;
height: 0;
overflow: hidden;
visibility: hidden;
}
<ul>
<li><a href="#" title="height">height</a></li>
<li><a href="#" title="icon">icon</a></li>
<li><a href="#" title="left">left</a></li>
<li><a href="#" title="letter-spacing">letter-spacing</a></li>
<li><a href="#" title="line-height">line-height</a></li>
</ul>

关于html - 内联元素在悬停时变为粗体时移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31139042/

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