Skip to content

Files

Latest commit

 

History

History
32 lines (24 loc) · 1.58 KB

File metadata and controls

32 lines (24 loc) · 1.58 KB

Specificity easy #css

by Pawan Kumar @jsartisan

Take the Challenge

Given the provided HTML and CSS code snippets below, what would be the color of the text 'Guess my color'?

<body>
   <div class="outer">
        <p class="inner">Guess my color</p>
    </div>
</body>
p.inner {
    color: purple;
}

.outer p {
    color: red;
}

.inner {
    color: blue;
}

p {
    color: green;
}

Back Share your Solutions Check out Solutions