```
<style>
.foo .bar { color: black }
p { color: white }
</style>
<div class="foo">
<blockquote class="bar">
<p>This is text</p>
</blockquote>
</div>
```
What color is the text?
```
<style>
.foo .bar { color: black }
p { color: white }
</style>
<div class="foo">
<blockquote class="bar">
<p>This is text</p>
</blockquote>
</div>
```
What color is the text?