p
elements that have div
element as a parent of any leveldiv p {
color: red;
}
Selects all the p
elements that are children of the element with id #id1
#id1 p {
color: green;
}
Selects all p
elements that have parent element with class .class1
.class1 p {
color: yellow;
}