×
×
Correct!
Insert the HSLA value to make a color with no hue, 100% saturation, 50% lightness, and 50% transparency.
<p style="color: hsla(0, 100%, 50%, 0.5)">This is a paragraph.</p>
<p style="color: hsla(0, 100%, 50%, 50%)">This is a paragraph.</p>
<p style="color: hsla(0,100%,50%,50%)">This is a paragraph.</p>
<p style="color: hsla(0,100%,50%,0.5)">This is a paragraph.</p>
<p style="color: hsla(0,100%,50%,.5)">This is a paragraph.</p>
<p style="color: hsla(0, 100%, 50%, .5)">This is a paragraph.</p>
Not CorrectClick here to try again. Correct!
<p style="color:
( )">This is a paragraph.</p>
|