Descendent Selector(Space) is used to apply the properties of an element inside the element. Example- Select all <p> tags inside <div> tags.
<!-- Descendent Selector(element element)(div p):- Select all <p> elements inside <div> elements.-->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Selectors with combinators</title>
<style>
div p {
color: aqua;
background-color: black;
}
</style>
</head>
<body>
<div>
<p>Inside div</p>
<p>Inside div</p>
<p>Inside div</p>
</div>
<div>
<span>Span Element</span>
</div>
<p>Outer Paragraph from div</p>
</body>
</html>
Show Output :