How do you insert a comment in a CSS file?
Example:-
/* This is a single-line CSS comment */
h2 { background-color: green; }
You can add comments as follows wherever you want in the code:
Example
h2 { background-color: yellow; /* Set text color to yellow */ }
Comments can also span multiple lines:?
Example
/* This is
a multi-line
comment */
h2 { color: brown; }
Which property is used to change the background color?
How do you add a background color for all <h1> elements?
Which CSS property is used to change the text color of an element?
Which CSS property controls the text size?
What are the correct CSS syntax for making all the <p> elements bold?