Suppose we have such elements:
<div class="block"> <p> <span> .... </span> </p> </div> To get to the p element with respect to the div with the block class, we do this:
.block > p { border: 1px solid black; } What do you do if you need to get to the span element relative to the div element with the block class?