Q. |
How do you make each word in a text start with a capital letter?
C.
text-transform:capitalize
Answer :
text-transform:capitalize
Show Answer
|
Q. |
Which CSS property controls the text size?
Show Answer
|
Q. |
Which CSS property is used to change the text color of an element?
Show Answer
|
Q. |
Which property is used to change the background color?
Answer :
background-color
Show Answer
|
Q. |
How do you insert a comment in a CSS file?
A.
/* this is a comment */
B.
// this is a comment //
Answer :
/* this is a comment */
Show Answer
|
Q. |
Which is the correct CSS syntax?
A.
body { color: black; }
Answer :
body { color: black; }
Show Answer
|
Q. |
Which HTML attribute is used to define inline styles?
Show Answer
|
Q. |
Where in an HTML document is the correct place to refer to an external style sheet?
A.
In the < head > section
B.
In the < body > section
C.
At the end of the document
Answer :
In the < head > section
Show Answer
|
Q. |
What does CSS stand for?
A.
Cascading Style Sheets
Answer :
Cascading Style Sheets
Show Answer
|