I have this structure:
<div class="Root"> <div>ddddddd</div> <div> <div>pppppppppp</div> <div>pppppppppp</div> </div> <div>ddddddd</div> <div>
I want to put borders on the divs that contain ddddddd, and I want to set the text color on all divs to green.
div
ddddddd
There are two rules:
class
.Root
Any ideas?
Actually I was searching this:
Selects the divs that are direct children of Root:
.Root > div { border: 1px solid red; }
Selects all the divs under Root:
.Root div { color:green; }
1.4m articles
1.4m replys
5 comments
57.0k users