Last active
February 28, 2017 11:35
-
-
Save silo/590f85c0ec90ef03ee37361424a025b4 to your computer and use it in GitHub Desktop.
CSS: get previous sibling
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#">test</a> | |
<a href="#" class="active">test</a> | |
<a href="#">test</a> | |
<p> | |
test | |
</p> | |
<img class="image" src="http://placehold.it/350x150"> | |
<style> | |
a:not(.active) { background:red } | |
a.active + a { background:yellow } | |
p:not(.image) { color: red; } | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment