CSS Online Quiz



Following quiz provides Multiple Choice Questions (MCQs) related to CSS. You will have to read all the given answers and click over the correct answer. If you are not sure about the answer then you can check the answer using Show Answer button. You can use Next Quiz button to check new set of questions in the quiz.

Questions and Answers

Q 1 - Which of the following selector selects all paragraph elements whose lang attribute has a value of exactly "fr"?

A - p[lang]

B - p[lang="fr"]

C - p[lang~="fr"]

D - p[lang|="fr"]

Answer : B

Explanation

p[lang="fr"] − Selects all paragraph elements whose lang attribute has a value of exactly "fr".

Q 2 - Which of the following defines a measurement as a percentage relative to another value, typically an enclosing element?

A - %

B - cm

C - em

D - ex

Answer : A

Explanation

% − Defines a measurement as a percentage relative to another value, typically an enclosing element.

Q 3 - Which of the following defines 1% of viewport height?

A - px

B - vh

C - vw

D - vmin

Answer : B

Explanation

vh − 1% of viewport height.

Q 4 - Which of the following property is used to change the face of a font?

A - font-family

B - font-style

C - font-variant

D - font-weight

Answer : A

Explanation

The font-family property is used to change the face of a font.

Q 5 - Which of the following property is used as shorthand to specify a number of other font properties?

A - font-size

B - font

C - font-variant

D - font-weight

Answer : B

Explanation

The font property is used as shorthand to specify a number of other font properties.

Q 6 - Which of the following property is used to capitalize text or convert text to uppercase or lowercase letters?

A - text-indent

B - text-align

C - text-decoration

D - text-transform

Answer : D

Explanation

The text-transform property is used to capitalize text or convert text to uppercase or lowercase letters.

Q 7 - Which of the following property specifies the color of a border?

A - :border-color

B - :border-style

C - :border-width

D - :border-bottom-color

Answer : A

Explanation

The border-color specifies the color of a border.

Q 8 - Which of the following property changes the style of top border?

A - :border-bottom-style

B - :border-top-style

C - :border-left-style

D - :border-right-style

Answer : B

Explanation

The border-top-style changes the style of top border.

Q 9 - Which of the following property specifies the left margin of an element?

A - :margin

B - :margin-bottom

C - :margin-top

D - :margin-left

Answer : D

Explanation

The margin-left specifies the left margin of an element.

Q 10 - Which of the following value of cursor shows it as an arrow?

A - crosshair

B - default

C - pointer

D - move

Answer : B

Explanation

default: An arrow

css_questions_answers.htm
Advertisements