Skip to content
Himavanta
Search
Main Navigation
Projects
Coding
Thinking
Friends
About
Appearance
Return to top
On this page
CSS 选择除第一个之外的子元素
css
div
+
div
{
background
:
red
;
}
div
~
div
{
background
:
blue
;
}
1
2
3
4
5
6