- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在悬停在 .but 上时显示 .navdrop。这是我的 CSS:
.but {
background-color: blue;
padding: 5px;
float: left;
}
.but a:hover {
background-color: skyblue;
}
.but a:hover .navdrop {
display: block !important;
}
.navdrop {
text-align: left;
position: absolute;
right: auto;
top: 21.5rem;
display: none;
}
.navdrop ul {
list-style-type: none;
background-color: skyblue;
padding: 10px;
}
.navdrop li {
padding: 2px 10px 2px 2px;
background-color: blue;
}
li .navlinkd {
display: block;
text-decoration: none;
color: black;
}
.navlinkd:hover {
box-shadow: 8px 5px 4px rgba(124, 112, 79, 0.7);
background-color: skyblue;
}
.navlinkd:active {
box-shadow: none;
background-color: #3c94d1;
@media screen and (min-width: 1030px) {
span {
display: none;
}
}
我不想 .but 链接到任何地方,但我是新手,没有一个可用的解决方案对我有用。这是我的 HTML 供引用。我想知道这是否与 display: none 不能逆转这一事实有关,在这种情况下,我该如何让它显示?
<div class="liststyle">
<ul>
<li class="but"><a href>Menu ↓</a></li>
<div class="navdrop">
<ul>
<li><a class="navlinkd" href="Intro.html">Intro</a></li>
<li><a class="navlinkd" href="a.html">a</a></li>
<li><a class="navlinkd" href="b.html">b</a></li>
<li><a class="navlinkd" href="c.html">c</a></li>
<li><a class="navlinkd" href="d.html">d</a></li>
<li><a class="navlinkd" href="e.html">e</a></li>
<li><a class="navlinkd" href="f.html">f</a></li>
<li><a class="navlinkd" href="g.html">g</a></li>
<li><a class="navlinkd" href="h.html">h</a></li>
</ul>
</div>
<ul>
</div>
最佳答案
首先,一些旁注:
<ul>
而不是 </ul>
..navlinkd:active
中的右括号.我已经在示例中更正了这两点。
其次,还有 no concept of a parent selector 在 CSS 中,这意味着您无法更改 .navdrop
的显示通过定位 <a>
.but
的 child . 但是,您可以通过将鼠标悬停在 .but
上来实现您的目标。本身,并利用 adjacent sibling selector ( +
) :
.but:hover + .navdrop {
display: block;
}
请注意,我已经删除了 !important
从上面,因为没有必要,和!important
拥有最高级别的 specificity (这意味着它只能作为最后的手段使用)。
此外,如果没有 JavaScript,在鼠标悬停时切换菜单的可见性基本上毫无意义,因为您永远无法真正点击任何链接。
这可以从以下方面看出:
.but {
background-color: blue;
padding: 5px;
float: left;
}
.but a:hover {
background-color: skyblue;
}
.but:hover ~ .navdrop {
display: block;
}
.navdrop {
text-align: left;
position: absolute;
right: auto;
/*top: 21.5rem;*/
top: 3.5rem;
display: none;
}
.navdrop ul {
list-style-type: none;
background-color: skyblue;
padding: 10px;
}
.navdrop li {
padding: 2px 10px 2px 2px;
background-color: blue;
}
li .navlinkd {
display: block;
text-decoration: none;
color: black;
}
.navlinkd:hover {
box-shadow: 8px 5px 4px rgba(124, 112, 79, 0.7);
background-color: skyblue;
}
.navlinkd:active {
box-shadow: none;
background-color: #3c94d1;
}
@media screen and (min-width: 1030px) {
span {
display: none;
}
}
<div class="liststyle">
<ul>
<li class="but"><a href>Menu ↓</a></li>
<div class="navdrop">
<ul>
<li><a class="navlinkd" href="Intro.html">Intro</a></li>
<li><a class="navlinkd" href="a.html">a</a></li>
<li><a class="navlinkd" href="b.html">b</a></li>
<li><a class="navlinkd" href="c.html">c</a></li>
<li><a class="navlinkd" href="d.html">d</a></li>
<li><a class="navlinkd" href="e.html">e</a></li>
<li><a class="navlinkd" href="f.html">f</a></li>
<li><a class="navlinkd" href="g.html">g</a></li>
<li><a class="navlinkd" href="h.html">h</a></li>
</ul>
</div>
</ul>
</div>
请注意,我已经修改了 top
在 .navdrop
对于这个例子,这样菜单将在没有任何滚动的情况下显示。
考虑到无法点击链接,您可能需要使用 JavaScript 在悬停时打开相关菜单,并延迟关闭。不幸的是,这不能用 CSS 完成。
希望对您有所帮助! :)
关于html - 我如何做到这一点,当菜单按钮悬停在不改变位置的情况下显示 div : absolute part?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47744668/
我想显示一个评论列表以及每个评论的评论列表等等: 这是我的 HTML 代码: Titre d'un commentaire statique Qui cum ven
据我了解,position: absolute 对于具有非静态位置的第一个父级是绝对的。如果没有 parent 有指定的位置,那么它将是浏览器/窗口的绝对位置。 position: fixed 另一方
我有 3 个 div,每个 div 都有以下 CSS。 .d1 { position: relative; background-color: yellow; height:
我对此很困惑,你可以看到它适用于 pos: absolute; 但不适用于 position: absolute; 这是什么意思? https://jsfiddle.net/aasr169k/ #ab
我有以下html CSS .banner_area_interna
我的“header_main”绝对定位,高度为 100%,基本上覆盖了整个屏幕。在 header_main div n 内还有另一个绝对定位的 div。我已将“icon-wrapper”div 设置为
最近,我们的主要网站进行了 UI 重新设计 - 新导航/页脚等。主网站(有自己的用户界面 - 导航/页脚等)托管在主页面中调用的其他 html 页面。 在重新设计之前,每当我们创建 html 页面(用
document_name ='TestDoc' document_path = ("/Users/Me/QA/Project/Documents/#{document_name}") File.ne
我希望能够将任何操作系统上主目录中的某个目录转换为该操作系统上的实际绝对路径,例如(make-pathname :directory '(:absolute :home "directoryiwant
HTML CSS div1、div2 和 div3 的属性是: div1. { position: absolute; z-index: 100; background
我有几个与 OpenFeign 相互通信的微服务.每个都是一个项目的子模块(称为“父”),具有自己的 docker 容器。 好的。所以,当我想用 feign.builder().target()
多年来,Visual Studio.NET 为 ASP.NET 提供了“绝对定位”,您可以借此将控件拖动到设计器 Canvas 上您想要的任何位置。但是,一直强烈建议不要使用该功能。相反,常识告诉您应
在浏览器窗口中水平居中元素(div,但那不是重点)时出现问题。与其父元素相比定位它没有问题,但希望它摆脱这个 HORIZONTALLY - 但仍然保持与它的垂直关系。也许我要求太多了? :-) 我可以
我试图在根元素内放置一个内部元素。根元素设置为 100% 高和 100% 宽。但是,我希望内部 svg 与外部 svg 的边缘相距 10 像素左右——除了右边缘,我希望与外右边缘相距 200 像素。我
我的nant脚本(Team City)中有一个msdeploy,它正在工作,但它正在复制一些我不想复制的文件夹。什么命令将跳过这些目录?我试过了: and 这些命令似乎都不起作用,并且Build
我在我网站的某个部分挂了一条功能区的以下 css http://www.tonypalazzo.com . .ribbon { float:left; padding:5px 0 0
我正在尝试重新创建 OOCSS media object为了在某些文本旁边显示图像。媒体对象使用 overflow: hidden 创建一个新的 block 格式化上下文。这可确保文本不会环绕图像
/codepen 链接曾经在这里/ 当我没有给我的主页脚指定位置时,段落元素与根元素无关。为什么它与我的 .banner 元素有关?这不是它的祖先。这是一个错误吗? .main-footer { /
fiddle 在div重叠的简单情况下 first second CSS:- #second { margin-top: -18px; background:
以下来自this问题的最佳答案 Absolute CSS Positioning position: absolute; This tells the browser that whatever is
我是一名优秀的程序员,十分优秀!