To select all elements inside div elements and set their background color to yellow.
<!-- To select all elements inside div elements and set their background color to yellow. -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Universal with Div</title>
<style>
div * {
background-color: yellow;
}
</style>
</head>
<body>
<h1>Welcome to CSS Webpage </h1>
<div>
<p> OnWeb Sharma G </p>
<p> I live in UP.</p>
</div>
<p>So, We are gaining knowledge.</p>
</body>
</html>