How to put the child class to the parent?
Hello again, how i can put the child class to the parent?
For example, i have this:
- <div class="parent">
- <div class="child-one">Content of child one</div>
- </div>
- <div class="parent">
- <div class="child-two">Content of child two</div>
- </div>
- <div class="parent">
- <div class="child-three">Content of child three</div>
- </div>
And I want add to the parent div the class of his child, thus:
- <div class="parent child-one">
- <div class="child-one">Content of child one</div>
- </div>
- <div class="parent child-two">
- <div class="child-two">Content of child two</div>
- </div>
- <div class="parent child-three">
- <div class="child-three">Content of child three</div>
- </div>
Thanks in advance. :)