0 / 60 seg.

In the following code snippet, what text color will be applied to <h3> elements inside an element with the ID #section?

<div id="section">
    <h3>Subsection</h3>
</div>
#section h3 {
    color: #000000;
}