this element is used to select a specific child element from a specific element.
```html
<div class="abc">
<section>.....</section>
<p>.....</p>
<button>.....</button>
</div>
```
here , to select all from our "div" class name "abc" ,we use child selector .
```CSS
.abc > p {
........
........
}
```
Top comments (0)