So im having some trouble with the challenge and i spent 30 minutes on google trying to figure it out yesterday. Can anybody help me make colored text boxes in html?
@LittleNomster you will have to put the text inside a <div></div> tag. So something like this:
<div></div>
<div id='randomDivId'> <p>Text</p> </div>
And then in your css, you could do:
#randomDivId { background-color: white; }
to make the background white
About Me
So im having some trouble with the challenge and i spent 30 minutes on google trying to figure it out yesterday. Can anybody help me make colored text boxes in html?
@LittleNomster you will have to put the text inside a
<div></div>
tag. So something like this:And then in your css, you could do:
to make the background white