TASK 2: * A <p>
element that is directly after an <h1>
should be 120%.
Please Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
h1+p {
}
(this is css given to me , I don’t know which property to use for 120%)
you need to set the text size, what’s the rule for text size?
font-size: 16px
this is
so use font-size
with the value you are asked to use (120%
)
ohh. that’s it.
thanks for clearing my confusion.
background-color: #86DEFA;
Can you help me out with this. I was trying to convert this background-color into HSL as
background-color: HSL(194°, 92%, 75%)
But the background color is still white instead of being #86DEFA color
no ° symbol, you need to remove that
thanks , finally I got it .
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.