使用选择器选择 CSS 中元素的前一个兄弟元素

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/10006282/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 03:30:00  来源:igfitidea点击:

Select the preceding sibling of an element in CSS using selectors

csscss-selectors

提问by Justin John

Possible Duplicate:
CSS previous sibling selector

可能的重复:
CSS 上一个同级选择器

How to select the above element of an element in CSS using selectors

如何使用选择器在 CSS 中选择元素的上述元素

<li class="content">One</li>
<li class="content">Two</li>
<li class="content">Three</li>
<li class="no-content">First</li>
<li class="content">Four</li>
<li class="content">Five</li>
<li class="content">Six</li>

Here I want to use the class no-content, so that I can get its above element <li class="content">Three</li>, using CSS selector.

在这里,我想使用 class no-content,以便我可以<li class="content">Three</li>使用 CSS 选择器获取其上面的元素。

回答by Gatekeeper

This is not possible with pure CSS...

这对于纯 CSS 是不可能的...

回答by Rohit Azad

Are you looking the same:- http://jsfiddle.net/rohitazad/4Y9D5/3/

你看起来一样吗:- http://jsfiddle.net/rohitazad/4Y9D5/3/

you can select to bottom div but not select to top .

您可以选择到底部 div 但不能选择到顶部。