I’m stuck with Font size exercise. Kindly help me. I’m just new to coding
Thanks in advance
I believe you missed the ;
at the end of your font-size styling and that’s why the test fails or you get a warning.
Usually when you leave out the last semicolon from the css block, it doesn’t result in error but be wary of the fact that someday some other developer might want to add another css property to the same css code block and if he misses to add semicolon in the last css property, they would have hard time figuring out why it isn’t working.
So a good practice would be to always end the css properties with a ;
.
thank you so much for helping me