<legend id='nTK3i'><style id='nTK3i'><dir id='nTK3i'><q id='nTK3i'></q></dir></style></legend>

    <small id='nTK3i'></small><noframes id='nTK3i'>

        <tfoot id='nTK3i'></tfoot>

      1. <i id='nTK3i'><tr id='nTK3i'><dt id='nTK3i'><q id='nTK3i'><span id='nTK3i'><b id='nTK3i'><form id='nTK3i'><ins id='nTK3i'></ins><ul id='nTK3i'></ul><sub id='nTK3i'></sub></form><legend id='nTK3i'></legend><bdo id='nTK3i'><pre id='nTK3i'><center id='nTK3i'></center></pre></bdo></b><th id='nTK3i'></th></span></q></dt></tr></i><div id='nTK3i'><tfoot id='nTK3i'></tfoot><dl id='nTK3i'><fieldset id='nTK3i'></fieldset></dl></div>

          <bdo id='nTK3i'></bdo><ul id='nTK3i'></ul>

        选择除悬停一个 CSS 之外的所有链接

        Selecting all links except hovered one CSS only(选择除悬停一个 CSS 之外的所有链接)
          <tbody id='NunQF'></tbody>

                <legend id='NunQF'><style id='NunQF'><dir id='NunQF'><q id='NunQF'></q></dir></style></legend>
                <i id='NunQF'><tr id='NunQF'><dt id='NunQF'><q id='NunQF'><span id='NunQF'><b id='NunQF'><form id='NunQF'><ins id='NunQF'></ins><ul id='NunQF'></ul><sub id='NunQF'></sub></form><legend id='NunQF'></legend><bdo id='NunQF'><pre id='NunQF'><center id='NunQF'></center></pre></bdo></b><th id='NunQF'></th></span></q></dt></tr></i><div id='NunQF'><tfoot id='NunQF'></tfoot><dl id='NunQF'><fieldset id='NunQF'></fieldset></dl></div>

                <small id='NunQF'></small><noframes id='NunQF'>

              1. <tfoot id='NunQF'></tfoot>

                • <bdo id='NunQF'></bdo><ul id='NunQF'></ul>
                  本文介绍了选择除悬停一个 CSS 之外的所有链接的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  I'm trying to make a CSS selector that matches all links except the hovered one. Naturally I though of using the ~ operator to catch around elements:

                  a:hover ~a
                  

                  This works fine but it only matches elements after the hovered one, and I would like to get the ones before as well. So I though of using this:

                  a:hover ~a,  a ~a:hover
                  

                  But no success.


                  Here is a JSFiddle that shows what I am talking about.
                  Of course I know I could do it easily with jQuery but I like to exploit CSS as much as possible when I think javascript can be avoided.

                  解决方案

                  You cant do what you are explicitly after, without using JavaScript due to the way CSS selectors work based on DOM hierarchy and their limited potential for traversal.

                  However, given what I imagine you are trying to achieve, why not apply the hover to the parent element and exclude the currently hovered a?

                  Demo Fiddle

                  (and an alternative)

                  div:hover a:not(:hover){
                      color:red;
                  }
                  

                  这篇关于选择除悬停一个 CSS 之外的所有链接的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Move link image 5px up on hover(悬停时将链接图像向上移动 5px)
                  How do I inspect CSS pseudo classes with firebug?(如何使用 firebug 检查 CSS 伪类?)
                  Why doesn#39;t CSS hover work on table rows when the cells inside the rows have class names?(当行内的单元格具有类名时,为什么 CSS 悬停在表格行上不起作用?)
                  Hover image - display div over it(悬停图像 - 在其上显示 div)
                  How to apply a CSS class on hover to dynamically generated submit buttons?(如何在悬停时将 CSS 类应用于动态生成的提交按钮?)
                  Differences between CSS3 :hover and :focus?(CSS3 :hover 和 :focus 的区别?)
                  <tfoot id='UvIrL'></tfoot>
                  <i id='UvIrL'><tr id='UvIrL'><dt id='UvIrL'><q id='UvIrL'><span id='UvIrL'><b id='UvIrL'><form id='UvIrL'><ins id='UvIrL'></ins><ul id='UvIrL'></ul><sub id='UvIrL'></sub></form><legend id='UvIrL'></legend><bdo id='UvIrL'><pre id='UvIrL'><center id='UvIrL'></center></pre></bdo></b><th id='UvIrL'></th></span></q></dt></tr></i><div id='UvIrL'><tfoot id='UvIrL'></tfoot><dl id='UvIrL'><fieldset id='UvIrL'></fieldset></dl></div>

                  <legend id='UvIrL'><style id='UvIrL'><dir id='UvIrL'><q id='UvIrL'></q></dir></style></legend>

                    • <bdo id='UvIrL'></bdo><ul id='UvIrL'></ul>

                          <small id='UvIrL'></small><noframes id='UvIrL'>

                              <tbody id='UvIrL'></tbody>