CSS Multiple-Choice Questions (MCQs)

CSS stands for "Cascading Style Sheets", it is used to define how HTML elements are to be displayed on screen, paper, or in other media. It can control the layout of multiple web pages all at once.

CSS MCQs: This section contains Cascading Style Sheets (CSS) Multiple-Choice Questions with Answers. These CSS MCQs are written for beginners as well as advanced, practice these MCQs to enhance and test the knowledge of CSS.

List of CSS MCQs

1. What is CSS stands for?

  1. Cascading Style Sheets
  2. Cascade Style Sheet
  3. Color Style Sheets
  4. Color Style Sheet

Answer: A) Cascading Style Sheets

Explanation:

The full form of the CSS is Cascading Style Sheets. Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML. CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.


2. What CSS describes?

  1. CSS describes how calculation perform on button click.
  2. CSS describes how HTML elements are to be displayed on screen, paper, or in other media
  3. Both A. and B.
  4. None of the above

Answer: B) CSS describes how HTML elements are to be displayed on screen, paper, or in other media

Explanation:

CSS describes how HTML elements are to be displayed on screen, paper, or in other media.


3. What is the correct syntax for referring an external CSS?

  1. <link rel="stylesheet" type="text/css" href="mystyle.css">
  2. <stylesheet rel="stylesheet" type="text/css" href="mystyle.css">
  3. <style rel="stylesheet" type="text/css" href="mystyle.css">
  4. All of the above

Answer: A) <link rel="stylesheet" type="text/css" href="mystyle.css">

Explanation:

The correct syntax to include (refer) an external CSS in an HTML document is,

<link rel="stylesheet" type="text/css" href="mystyle.css">

Here,

  • rel defined the relationship.
  • href is the CSS filename.
  • type is the type of the file, for CSS – the type is "text/css"

4. What is a CSS selector?

  1. A CSS selector is the CSS class name
  2. A CSS selector is the set of properties that are going to be applied on HTML elements
  3. A CSS selector is name of CSS file.
  4. A CSS selector is the first part of a CSS Rule. It may an HTML element or pattern of elements.

Answer: D) A CSS selector is the first part of a CSS Rule. It may an HTML element or pattern of elements

Explanation:

A CSS selector is the first part of a CSS Rule. It may an HTML element or pattern of elements and other terms that tell the browser which HTML elements should be selected to have the CSS property values inside the rule applied to them.


5. In a CSS file, there is a CSS rule for paragraphs tags – what does p can be called?

  1. Selector
  2. Attribute
  3. Property
  4. Tag

Answer: A) Selector

Explanation:

In a CSS rule, the HTML element(s) for them we are writing the CSS is known as "CSS Selector".


6. Internal styles are written within the _____ element.

  1. <style>…</style>
  2. <css>…</css>
  3. <stylesheet>…</stylesheet>
  4. Both A. and B.

Answer: A) <style>…</style>

Explanation:

Internal styles are defined within the <style> element, inside the <head> section of an HTML page.


7. Inline styles are written within the _____ attribute.

  1. style
  2. css
  3. stylesheet
  4. Both A. and B.

Answer: A) style

Explanation:

Inline styles are defined within the style attribute of the relevant element.

Example:

<h1 style="color:blue;text-align:center;">This is a heading</h1>
<p style="color:red;">This is a paragraph.</p>

8. CSS comments are placed within the ______.

  1. //
  2. /* and */
  3. <* and *>
  4. <! And !>

Answer: B) /* and */

Explanation:

A CSS comment is placed inside the <style> element, and starts with /* and ends with */.


9. Can comments also span multiple lines?

  1. Yes
  2. No

Answer: A) Yes

Explanation:

Yes, comments can also span multiple lines.

Example:

/* This is
a multi-line
comment */

OR

/*
This is
a multi-line
comment
*/

10. Which property is used to define the text color?

  1. text-color
  2. color
  3. font-color
  4. Both A. and B.

Answer: B) color

Explanation:

The color property is used to define the text color in CSS.


11. Which property is used to define the background color?

  1. bgcolor
  2. bg-color
  3. background
  4. background-color

Answer: D) background-color

Explanation:

The background-color property is used to define the background color in CSS.


12. From the given options which is/are the valid way to represent a color?

  1. A valid color name like "blue"
  2. HEX code like "#0000ff"
  3. RGB Value like "rgb(0,0,255)
  4. All of the above

Answer: D) All of the above

Explanation:

All of the given options are valid to define/represent the color name.


13. Which property is used to define the font of the element's text?

  1. font
  2. font-family
  3. font-style
  4. All of the above

Answer: B) font-family

Explanation:

The font-family property is used to define the font of the element's text.

Example:

p
{
   font-family: "Times New Roman", Times, serif;
}

14. To make a text italic, which CSS property is used?

  1. font
  2. font-family
  3. font-style
  4. All of the above

Answer: C) font-style

Explanation:

The font-style property is used to define the font style i.e., to make the text bold. To make the text italic, italic value is used.

Example:

p
{
font-style: italic;
}

15. What are the valid values of font-style property?

  1. italic, bold, bolder
  2. normal, bold, italic
  3. underline, bold, italic
  4. inherit, italic, normal, oblique

Answer: D) inherit, italic, normal, oblique

Explanation:

The following are the valid values of the font-style property,

  • inherit
  • italic
  • normal
  • oblique

16. Why font-weight property is used?

  1. Sets how thick or thin characters in text should be displayed.
  2. Sets the size of the font
  3. Both A. and B.
  4. None of the above

Answer: A) Sets how thick or thin characters in text should be displayed

Explanation:

The font-weight property sets how thick or thin characters in text should be displayed.


17. What is/are the correct value(s) of font-weight property?

  1. bold, italic, underline
  2. normal, bold, italic
  3. normal, bold, bolder, lighter, initial, and inherit
  4. None of the above

Answer: C) normal, bold, bolder, lighter, initial, and inherit

Explanation:

The valid values of the font-wight property:

  • normal,
  • bold
  • bolder
  • lighter
  • initial
  • inherit

18. Which is the correct inline CSS for p tag to define paragraph's text and background colors?

  1. <p css="color: red; background-color: yellow;">
  2. <p cssstyle="color: red; background-color: yellow;">
  3. <p inline="color: red; background-color: yellow;">
  4. <p style="color: red; background-color: yellow;">

Answer: D) <p style="color: red; background-color: yellow;">

Explanation:

The correct inline CSS style is,

<p style="color: red; background-color: yellow;">Paragraph Text.</p>

19. What is the correct syntax of border property in CSS?

  1. border: border-width border-style border-color
  2. border: border-color border-width border-style
  3. border: border-style border-width border-color
  4. All of the above

Answer: A) border: border-width border-style border-color

Explanation:

The correct syntax to define element's border using the border property

border: border-width border-style border-color

Example:

<p style="border: 2px solid red;">
This is some text in a paragraph.
</p>

20. Which of the following is the correct syntax to display the hyperlinks without any underline?

  1. a {text-decoration : underline;}
  2. a {text-decoration : none;}
  3. a {text-decoration : block;}
  4. None of the above

Answer: B) a {text-decoration : none;}

Explanation:

The correct syntax to display the hyperlinks without any underline is,

a {text-decoration : none;}

21. Which of the following is the correct syntax to remove the underline on hyperlinks and visited hyperlinks?

  1. a {text-decoration : underline;}, a:visited {text-decoration : underline;}
  2. a {text-decoration : block;}, a:visited {text-decoration : block;}
  3. a {text-decoration : none;}, a:visited {text-decoration : none;}
  4. None of the above

Answer: C) a {text-decoration : none;}, a:visited {text-decoration : none;}

Explanation:

The correct syntax to display the hyperlinks without any underline is,

a {text-decoration : none;}, a:visited {text-decoration : none;}

22. Which CSS property is used to style the hyperlinks on hover (Mouse over)?

  1. a:mouseover
  2. a:move
  3. a:mover
  4. a:hover

Answer: D) a:hover

Explanation:

The a:hover property is used to define the style on mouse over event,

a:hover{
// styles
} 

23. If you want to use a green dotted border around an image, which CSS property is used for that?

  1. border-style
  2. border-color
  3. border-decoration
  4. Both A. and B.

Answer: D) Both A. and B.

Explanation:

Two properties border-style and border-color are used to define a green dotted border around an image.

Example:

<img src="image_1.jpg" style="border-style:dotted;border-color:green;"/>

24. Which CSS property and value is used to center an element?

  1. text-align:center
  2. align:center
  3. text-align:middle
  4. align:middle

Answer: A) text-align:center

Explanation:

text-align property with value center is used to center an elements.


25. What are the valid values of text-align property?

  1. left, middle, right
  2. left, center, right
  3. left, center, right, justify
  4. left, middle, right, justify

Answer: C) left, center, right, justify

Explanation:

The valid values of text-align property are,

  • left
  • center
  • right
  • justify

26. What is the use of "text-align:justify" in CSS?

  1. Stretches the lines so that each line has equal width
  2. Stretches the lines so that each line can be arranged in left alignment
  3. Stretches the lines so that each line can be arranged in right alignment
  4. None of the above

Answer: A) Stretches the lines so that each line has equal width

Explanation:

The text-align:justify property stretches the lines so that each line has equal width.


27. Which CSS property is used to specify the indentation of the first line of a text?

  1. text-align
  2. padding-left
  3. margin-left
  4. text-indent

Answer: D) text-indent

Explanation:

The text-indent property is used to specify the indentation of the first line of a text.

Example:

p {
  text-indent: 50px;
}

28. Which CSS property is used to specify the space between the characters in a text?

  1. text-space
  2. letter-space
  3. letter-spacing
  4. letter-distance

Answer: C) letter-spacing

Explanation:

The letter-spacing property is used to specify the space between the characters in a text.

Example:

p {
  letter-spacing: 5px; 
}

29. Which CSS property is used to specify the space between lines?

  1. line-space
  2. line-spacing
  3. line-padding
  4. line-height

Answer: D) line-height

Explanation:

The line-height property is used to specify the space between lines.

Example:

p {
  line-height: 2.0;
}

30. Which CSS property is used to specify the space between the words in a text?

  1. word-spacing
  2. word-padding
  3. word-height
  4. characters-spacing

Answer: A) word-spacing

Explanation:

The word-spacing property is used to specify the space between the words in a text.

Example:

p {
  word-spacing: 10px;
}

31. Which CSS property adds shadow to text?

  1. content-shadow
  2. text-shadow
  3. word-shadow
  4. text-outline

Answer: B) text-shadow

Explanation:

The text-shadow property adds shadow to text.

Example:

p {
  text-shadow: 1px 2px green;
}

32. Which CSS property is used to specify uppercase and lowercase letters in a text?

  1. text-transform
  2. text-case
  3. case
  4. text-casing

Answer: A) text-transform

Explanation:

The text-transform property is used to specify uppercase and lowercase letters in a text.

Example:

p {
  text-transform: uppercase / lowercase / capitalize;
}

33. Which is the correct CSS statement to capitalize the first letter of each word?

  1. text-transform: uppercase
  2. text-transform: capitalize
  3. text-transform: sentence
  4. Both A. and B.

Answer: B) text-transform: capitalize

Explanation:

The correct CSS statement is to capitalize the first letter of each word,

p {
  text-transform: capitalize;
}

34. What are the valid values of text-transform property?

  1. uppercase, lowercase, and capitalize
  2. uppercase, lowercase, capitalize, and sentence
  3. upper, lower, and capital
  4. upper, lower, capital, and sentence

Answer: A) uppercase, lowercase, and capitalize

Explanation:

The valid values of text-transform property are,

  • uppercase
  • lowercase, and
  • capitalize

35. What are the valid values of "text-decoration" property?

  1. overline, line-through, underline, and none
  2. overline, strike, line-through, underline, and none
  3. double-line, overline, line-through, underline, and none
  4. None of these

Answer: A) overline, line-through, underline, and none

Explanation:

The valid values of text-decoration property are,

  • overline
  • line-through
  • underline, and
  • none

36. Which CSS property specifies how to align the last line of a text?

  1. text-align
  2. last-text-align
  3. text-align-last-line
  4. text-align-last

Answer: D) text-align-last

Explanation:

The text-align-last property specifies how to align the last line of a text.

Example:

p {
  text-align-last: right;
}

37. Which CSS property sets the vertical alignment of an element?

  1. vertical-align
  2. vertical-text-align
  3. text-valign
  4. vertical-align-text

Answer: A) vertical-align

Explanation:

The vertical-align property sets the vertical alignment of an element.

Example:

p {
  vertical-align: baseline;
}

38. What are the valid values of vertical-align property?

  1. baseline, text-top, text-bottom, subscript, and superscript
  2. baseline, top, bottom, sub, and super
  3. baseline, text-top, text-bottom, sub, and super
  4. base, text-top, text-bottom, sub, and super

Answer: C) baseline, text-top, text-bottom, sub, and super

Explanation:

The valid values of vertical-align property are,

  • baseline
  • text-top
  • text-bottom
  • sub, and
  • super

39. Which is the correct CSS statement to define multiple font families?

  1. font: "Times New Roman", Times, serif;
  2. font-name: "Times New Roman", Times, serif;
  3. font-family: "Times New Roman, Times, serif";
  4. font-family: "Times New Roman", Times, serif;

Answer: D) font-family: "Times New Roman", Times, serif;

Explanation:

The correct CSS statement to define multiple font families,

p {
  font-family: "Times New Roman", Times, serif;
}

40. Which CSS property specifies the type of list item marker?

  1. list-style
  2. list-style-type
  3. list-style-circle
  4. list-style-square

Answer: B) list-style-type

Explanation:

The list-style-type property specifies the type of list item marker.

Example:

ul {
  list-style-type: circle;
}

41. Which is the correct CSS statement is used to remove the markers/bullets?

  1. list-style: none;
  2. list-style-type: 0;
  3. list-style-type: blank;
  4. list-style-type: none;

Answer: D) list-style-type: none;

Explanation:

The correct CSS statement is used to remove the markers/bullets,

ul {
  list-style-type: none;
}

42. Which CSS property specifies an image as the list item marker?

  1. list-style-image
  2. list-style-picture
  3. list-style-background
  4. list-style-bgimage

Answer: A) list-style-image

Explanation:

The list-style-image property specifies an image as the list item marker.

Example:

ul {
  list-style-image: url('sqpurple.gif');
}

43. Which CSS property specifies if/how an element is displayed?

  1. block
  2. display
  3. element-display
  4. element-block

Answer: B) display

Explanation:

The display property specifies if/how an element is displayed.

Example:

ul {
  display: block;
}

44. Which CSS property specifies the type of positioning method used for an element?

  1. positions
  2. text-position
  3. positioning
  4. position

Answer: D) position

Explanation:

The position property specifies the type of positioning method used for an element.

Example:

div.fixed{
  position: fixed;
}

45. HTML elements are positioned ___ by default.

  1. static
  2. fixed
  3. relative
  4. none

Answer: A) static

Explanation:

HTML elements are positioned static by default.


46. What are the valid values for "position" property?

  1. block, none, fixed, absolute, and static
  2. block, static, fixed, absolute, and sticky
  3. static, relative, fixed, absolute, and none
  4. static, relative, fixed, absolute, and sticky

Answer: D) static, relative, fixed, absolute, and sticky

Explanation:

The valid values for position property are,

  • static
  • relative
  • fixed
  • absolute
  • sticky

47. Which CSS property specifies the opacity/transparency of an element?

  1. transparency
  2. opacity
  3. transform-opacity
  4. opacity-all

Answer: B) opacity

Explanation:

The opacity property specifies the opacity/transparency of an element.

Example:

img {
  opacity: 0.8;
}

48. Which CSS function performs a calculation to be used as the property value?

  1. sum()
  2. add()
  3. calc()
  4. addition()

Answer: C) calc()

Explanation:

The calc() function performs a calculation to be used as the property value.

Example:

body {
  width: calc(100% - 100px);
}

49. Which CSS function uses the largest value?

  1. large()
  2. maximum()
  3. max_value()
  4. max()

Answer: D) max()

Explanation:

The max() function uses the largest value.

Example:

body {
  width: max(80%, 100px);
}

50. Which CSS function uses the smallest value?

  1. small()
  2. minimum()
  3. min_value()
  4. min()

Answer: D) min()

Explanation:

The min() function uses the smallest value.

Example:

body {
  width: min(80%, 100px);
}

51. In how many ways can CSS be added to HTML?

  1. One
  2. Two
  3. Three
  4. Infinite

Answer: C) Three

Explanation:

CSS can be added to HTML in three different ways.

  • By using style attribute inside <body> tag.
  • By using <style> tag inside the <head> section of HTML
  • By creating an external CSS file and linking this file using <link> tag in HTML.

52. The <style> in Internal CSS refers to ___.

  1. Attributes
  2. HTML tags
  3. Selector
  4. All of the above

Answer: B) HTML tags

Explanation:

In Internal CSS, we add CSS using <style>, which is an HTML tag.


53. Can we link multiple stylesheets to a single page?

  1. Yes
  2. No
  3. Can't say, it depends on CSS properties
  4. None of the above

Answer: A) Yes

Explanation:

Yes, we can link multiple stylesheets to a single page. You just have to add the <link> element for each stylesheet.


54. The CSS property used to change text sizes?

  1. font-family
  2. font-size
  3. font
  4. Both A and C

Answer: D) Both A and C

Explanation:

The font and font-size CSS properties are used to change the font size. Font size is one of the longhand properties of the font.


55. In this line of code, identify the selector ___.

p {border: 2px solid blue;}
  1. p
  2. border
  3. 2px
  4. None of these

Answer: A) p

Explanation:

In the given line of code, p is the selector. Selectors target HTML elements that we want to style. Here, the border is a CSS property and 2px solid blue is the property value.


56. How many color names does CSS supports?

  1. 140
  2. 100
  3. 75
  4. 90

Answer: A) 140

Explanation:

CSS3 has 140 color names available which are supported by all the browsers.


57. The ___ property is used in the positioning of the background image.

  1. background-image
  2. background-position
  3. padding
  4. All of the above

Answer: B) background-position

Explanation:

As the name suggests, the background-position property specifies the position of the background image.


58. ___ means 4 times the size of the current font.

  1. 4px
  2. 4 pt.
  3. 4em
  4. 4vw

Answer: C) 4em

Explanation:

All four units refer to the unit of length. 4em means 4 times the size of the current font which is relative to the font size of the element.


59. Amongst the following browsers, which browser supports almost all the CSS properties?

  1. Firefox
  2. Safari
  3. Google Chrome
  4. Opera

Answer: C) Google Chrome

Explanation:

Both Google Chrome and Microsoft Edge support almost all the CSS properties.


60. What is the CSS Entity for the character '#'?

  1. 0023
  2. 0026
  3. 0027
  4. None of the these

Answer: A) 0023

Explanation:

We use CSS Entities to display all the characters. There are different entities for different characters. For this character "#", CSS Entity is 0023.


61. This selector selects all the <h> elements where the parent is a <div> element.

  1. h + p
  2. h > p
  3. p.h
  4. p > h

Answer: B) h > p

Explanation:

This is an element>element selector in which operand on the left side of child combinator (>) is the parent and operand on the right side is the child element.


62. Which selector selects the markers of list items?

  1. :: marker
  2. .marker
  3. ::selector
  4. None of these

Answer: A) ::marker

Explanation:

The :: marker selector targets the list markers of list items.


63. Which is the most widely used font in customizing web pages?

  1. Times New Roman
  2. Georgia
  3. Arial
  4. Garamond

Answer: C) Arial

Explanation:

Arial (sans-serif) is the most widely used font on web pages.


64. Which of the following CSS properties are animatable?

  1. color
  2. border-left
  3. flex
  4. All of the above

Answer: D) All of the above

Explanation:

We can add animation and transitions to all these three properties. To add animations, we apply animation property.


65. We can give space between unit and value when assigning length values to CSS properties.

  1. True
  2. False

Answer: B) False

Explanation:

If you give a space between unit and value, the property won't be injected in div.


66. Which of these units of length is supported by Chrome Version 1.0?

  1. rem
  2. px
  3. vw
  4. vh

Answer: B) px

Explanation:

Pixels (px) is supported by Chrome Version 1.0.


67. Which line of code is a must to write to apply CSS Flexbox properties?

  1. display: flex;
  2. display: flexbox;
  3. display: block;
  4. flex-direction: row;

Answer: A) display: flex;

Explanation:

If you want to apply CSS Flexbox properties, you need to set the display to flex first.


68. The default value of justify-content property is ___.

  1. flex-start
  2. flex-end
  3. space-between
  4. None

Answer: A) flex-start

Explanation:

The justify-content property is one of the CSS Flexbox properties. Its default value is flex-start.


69. Which is the correct syntax for adding animation?

  1. animation: name timing-function duration
  2. animation: name duration timing-function
  3. animation: name delay duration
  4. None of these

Answer: B) animation: name duration timing-function

Explanation:

The correct syntax for adding animation is:

animation: name duration timing-function

70. Which line of code specifies playing an animation with the same speed from beginning to the end?

  1. div {animation- timing function: linear;}
  2. div {animation- timing function: ease in;}
  3. div {animation- play- state: paused;}
  4. div {animation- fill-mode: both;}

Answer: A) div {animation- timing function: linear;}

Explanation:

We use the animation- timing- function property to define the time an animation uses to change from one set of CSS styles to another. When we set its value to linear, the animation will have the same speed from start to end.


71. Which line of code represents a universal selector?

  1. *{border: 2px solid red;}
  2. body {border: 2px solid red;}
  3. both A&B
  4. None of these

Answer: A) *{border: 2px solid red;}

Explanation:

Syntax for Universal selector is:

*{CSS property}

This selector selects all the HTML elements on the page.


72. Which of the following properties specify the width of the borders?

  1. border-width
  2. border-style
  3. border
  4. Both A and C

Answer: D) Both A and C

Explanation:

Both border and border-width properties specify the width of the borders. The border property is a shorthand property for border-width, border-style, and border-color.


73. Is border-image property animatable?

  1. Yes
  2. No

Answer: B) No

Explanation:

The border-image property is not animatable. We cannot use this property in defining animations and transitions.


74. What value is set to border: collapse property to define borders around each cell? (Refer to the image)

CSS MCQs Que 74
  1. collapse
  2. separate
  3. initial
  4. inherit

Answer: B) separate

Explanation:

When we set the value of border:collapse property to separate, each cell will display its borders.


75. Which cursor property value indicates that the program is busy?

  1. help
  2. default
  3. auto
  4. wait

Answer: D) wait

Explanation:

When we set the cursor property value to wait, the cursor indicates that the program is busy.


76. What does this line of code explain?

p {display: flex;}
  1. All the <p> elements are displayed as a block-level flex container
  2. All the <p> elements are not displayed by the browser
  3. All the <p> elements are displayed as a grid container
  4. All the <p> elements are displayed as an inline flex container

Answer: A) All the <p> elements are displayed as a block-level flex container


77. The text-align property defines the ___ alignment of text in an element.

  1. horizontal
  2. vertical
  3. both horizontal & vertical
  4. None of these

Answer: A) horizontal

Explanation:

The text-align property specifies the horizontal alignment of the text.


78. Does the z-index property accept negative values?

  1. Yes
  2. No

Answer: A) Yes

Explanation:

The z-index property accepts both negative and positive values.


79. Which CSS property is not supported by the Firefox browser?

  1. text-indent
  2. scroll- behavior
  3. overflow
  4. viewport

Answer: D) viewport

Explanation:

The viewport property is not supported by Firefox. Chrome and Microsoft Edge support this.


80. Which one is a fallback font?

  1. Times New Roman
  2. Georgia
  3. Serif
  4. None of these

Answer: C) Serif

Explanation:

One of the most commonly used fallback fonts is serif. Times New Roman and Georgia are examples of serif.


81. Where do we store external stylesheets?

  1. HTML files
  2. CSS files
  3. Folder
  4. None of these

Answer: B) CSS files

Explanation:

External stylesheets are stored in CSS files and we can link those files in HTML using the <link> tag.


82. In the given line of code, identify the type of selector used.

#Main {background-color: yellow;}
  1. CSS element selector
  2. CSS id selector
  3. Combinator selector
  4. All of the above

Answer: B) CSS id selector

Explanation:

The id selector uses the id attribute of an HTML element to select a specified element.

Syntax:

#id attribute {CSS property}

83. The Hex Code for the red color is ___.

  1. #FF0000
  2. #F0F000
  3. #F0000F
  4. None of these

Answer: A) #FF0000

Explanation:

Hex codes are three-byte hexadecimal numbers that are used to identify color in HTML/CSS.


84. In CSS, what does HSL stands for?

  1. hue, standard, light
  2. height, standard, line-width
  3. hue, saturation, lightness
  4. hue, standard, line-width

Answer: C) hue, saturation, lightness

Explanation:

HSL stands for hue, saturation, lightness. In CSS, we can specify color using the HSL value.


85. Among the following CSS properties, which property is not a shorthand property?

  1. background
  2. padding
  3. display
  4. border

Answer: C) display

Explanation:

The display property is not a shorthand property. It has only one property value.


86. In this line of code, what is the use of the alt attribute?

<img src="circle.jpg" alt="It is red">
  1. Adds a text description to an image
  2. Provides alternative information for an image
  3. To hide an image
  4. Both A & B

Answer: D) Both A & B

Explanation:

The alt attribute is used to provide alternative information for an image if a user fails to view an image on the webpage and also it tells us something related to the image.


87. The CSS border property specifies the style, color, and ___ of an element's border.

  1. length
  2. size
  3. width
  4. area

Answer: C) width

Explanation:

The CSS border properties specify the style, color, and width of an element's border. The border property is a shorthand property for border-width, border-style, and border-color.


88. To get this output, the CSS properties put to use are ___.

CSS MCQs Que 88
  1. display, border, align-items, justify-content
  2. display, border-width, justify-content, border-color
  3. margin, display, padding-left, justify-content
  4. None of these

Answer: A) display, border, align-items, justify-content

Explanation:

Code:

border: 4px solid blue;
display: flex;
align-items: center;
justify-content: center;

89. What does 'padding: 50px 20px;' specifies?

  1. top padding is 50px
  2. bottom padding is 20px
  3. right padding is 20px
  4. Both A & C

Answer: D) Both A & C

Explanation:

This line of code specifies top and bottom paddings are "50px" & "right" and left paddings are "20px".


90. What is the default size for normal text, like paragraphs?

  1. 11px
  2. 12px
  3. 16px
  4. 18px

Answer: C) 16px

Explanation:

If we don't specify a font size, the default size for normal texts is "16px" or "1em".






Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.