- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个导航栏并分为 3 个部分:1.id="菜单"2. id="fake"(按钮填充空间)3.id="社交"
我基本上希望 .active 页面和假按钮不包含在悬停效果中,但看起来如果我创建一个 .fake classe 并尝试 a:hover:not(.fake) 它不起作用.我也非常想知道是否可以创建多个异常。
这是完整的代码
body{
font-family:'Skranji',sans-serif;
font-size:100%;
margin:0;
}
#nav{
margin:0;
padding:0;
width:100%;
height:35px;
position:fixed;
overflow-y:hidden;
font-size:16px;
letter-spacing:3px;
border-bottom-style:solid;
border-bottom-width:1px;
border-color:black;
}
#nav a:not(.active){
background-color:rgba(0, 0, 0, 0.72);
}
#nav a.active{
background-color:black;
color:white;
}
#nav a:hover:not(.active){
background-color:rgba(128, 127, 127, 0.25);
color:black;
}
/*#nav a.fake{
background-color:rgba(0, 0, 0, 0.72);
}
nav a:hover:not(.fake){
background-color:rgba(128, 127, 127, 0.25);
color:black;
}*/
#menu{
width:70%;
}
#fake{
width:15%;
display:block;
float:left;
}
#social{
width:15%;
float:left;
}
#menu a{
display:table;
width:25%;
float:left;
}
#fake a{
width:100%;
display:table;
}
#social a{
float:right;
width:33.33%;
}
#menu a,#social a,#fake a{
text-decoration:none;
margin:0;
padding:5px;
color:white;
text-align:center;
}
.rMargin{
margin-right:10px;
}
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css.css">
<link href="https://fonts.googleapis.com/css?family=Skranji" rel="stylesheet">
</head>
<body>
<header>
<div id="nav">
<div id="menu">
<a class="active" href="home.html"><i class="fas fa-home rMargin"></i>Home</a>
<a href="blog.html"><i class="fas fa-globe rMargin"></i>Blog</a>
<a href="learn.html"><i class="fas fa-code rMargin"></i>Learn</a>
<a href="contactMe.html"><i class="fas fa-envelope rMargin"></i>Contact Me</a>
</div>
<div id="fake" >
<a class="fake" href="#"><button style="visibility:hidden"></button></a>
</div>
<div id="social">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</header>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>
最佳答案
刚找到答案!出于某种原因 a:hover:not() 我认为只接受 .active 类,所以在我个人的情况下,我需要在我需要异常的元素中插入 active 类,然后添加另一个类来重新设置它的样式,以便元素实际上看起来不像 .active 类。您需要仔细查看代码才能理解,但这实际上是解决问题的好方法
body{
font-family:'Skranji',sans-serif;
font-size:100%;
margin:0;
}
#nav{
margin:0;
padding:0;
width:100%;
height:35px;
position:fixed;
overflow-y:hidden;
font-size:16px;
letter-spacing:3px;
border-bottom-style:solid;
border-bottom-width:1px;
border-color:black;
}
#nav a:not(.active){
background-color:rgba(0, 0, 0, 0.72);
}
#nav a.active{
background-color:black;
color:white;
}
#nav a:hover:not(.active){
background-color:rgba(128, 127, 127, 0.25);
color:black;
}
#nav a.fake{
background-color:rgba(0, 0, 0, 0.72);
}
#menu{
width:70%;
}
#fake{
width:15%;
display:block;
float:left;
}
#social{
width:15%;
float:left;
}
#menu a{
display:table;
width:25%;
float:left;
}
#fake a{
width:100%;
display:table;
}
#social a{
float:right;
width:33.33%;
}
#menu a,#social a,#fake a{
text-decoration:none;
margin:0;
padding:5px;
color:white;
text-align:center;
}
.rMargin{
margin-right:10px;
}
<!DOCTYPE html>
<html lang="en-us">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css.css">
<link href="https://fonts.googleapis.com/css?family=Skranji" rel="stylesheet">
</head>
<body>
<header>
<div id="nav">
<div id="menu">
<a class="active" href="home.html"><i class="fas fa-home rMargin"></i>Home</a>
<a href="blog.html"><i class="fas fa-globe rMargin"></i>Blog</a>
<a href="learn.html"><i class="fas fa-code rMargin"></i>Learn</a>
<a href="contactMe.html"><i class="fas fa-envelope rMargin"></i>Contact Me</a>
</div>
<div id="fake" >
<a class="active fake" href="#"><button style="visibility:hidden"></button></a>
</div>
<div id="social">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<a href="#"><i class="fab fa-facebook-f"></i></a>
</div>
</div>
</header>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>
关于html - :hover:not() execption responds only to the . 事件类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50183564/
我正在从事一些维护项目,其中所有都是 sql 查询,但我想将其转换为 laravel。这是以下查询:- $members = Member::select('members.id','members.
我编写了一个 Android 应用程序 (4.4.2),它在大多数时间都能正确连接/断开 BLE 外围设备。但是,每隔一段时间我就会在 Bluetootgatt.java onClientConnec
我创建了一个导航栏并分为 3 个部分:1.id="菜单"2. id="fake"(按钮填充空间)3.id="社交" 我基本上希望 .active 页面和假按钮不包含在悬停效果中,但看起来如果我创建一个
我正在尝试将一些 DBIX 事务置于 eval block 下,以便要么进行所有事务,要么在中间出现问题时不进行任何事务。 我有几笔交易是这样完成的,但没有一件给我带来问题。只有一个: 我构建交易的方
我在尝试使用 SBJson 解析 Json 时遇到了一些问题,我做了一些研究,但找不到有用的东西... 我关注了一些关于如何做的博客,但我仍然得到这个错误:“__NSArrayM objectForK
这有点难以解释,所以让我们希望我能连贯地表达这个问题: 说我有这个 list : my_list = ["a string", 45, 0.5] 要了解问题出处的关键点是 my_list由另一个函数生
我想删除文件中多次出现的行,但想保留某些行。我该怎么做? 这是我的文件的一部分,我想更改它: §M: 1, K: 2 name, time, cycle, instr, L1-mi
我需要计算乘法阶来解决离散对数问题。我尝试在下面使用此算法,但它不适用于大数字。 def multiplicativeOrder(A, N) : if (GCD(A, N ) != 1) :
我是一名优秀的程序员,十分优秀!