Report Bug
Qus : What will be the output of following CSS code snippet?
Qusनीचे दिए गए CSS कोड का आउटपुट क्या होगा?

A. color:red, text-decoration:underline works
B. only font-style:italic works
C. color:red, text-decoration:underline and font-style:italic all works
D. text-decoration:underline and font-style:italic works


Solution
B. only font-style:italic works



Explanation
There is a missing semicolon (;) after color:red.



Report Bug