Can someone help me with this CSS? experimenting with class selectors and not sure why it's not working. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can someone help me with this CSS? experimenting with class selectors and not sure why it's not working.

<html> <head> <style> body { color: blue; background-color: gray; } </style> </head> <body> <div> <p> This is some text </p> <p class="first"> This is <b>more</b></p></div> .first {font-size: 200%; background-color: white; } but all I can see in the browser is the paragraph text in gray and blue... But the "this is more" doesn't change and the browser also shows the .first ..... white; } text. also is there any way in the app to make my code in the playground (wherever that even is) and link it?

25th Apr 2018, 6:08 AM
Taylor Carroll
Taylor Carroll - avatar
3 Answers
0
You must define class first into style because it's the part of css not html
25th Apr 2018, 6:28 AM
Dejan Francuz🥇
Dejan Francuz🥇 - avatar
0
So I would move the .first line into <style> segment?
25th Apr 2018, 7:05 AM
Taylor Carroll
Taylor Carroll - avatar
0
yesss I just did and it worked!!!
25th Apr 2018, 7:08 AM
Taylor Carroll
Taylor Carroll - avatar