1. Question: CSS styles are:

    A
    Cumulative

    B
    Overridden

    C
    Inherited

    D
    Not Overridden

    E
    Not Inherited

    Note: Not available
    1. Report
  2. Question: Which of the following is correct order of CSS overridden priority?

    A
    1. Inline CSS 2. Internal CSS 3. External CSS 4. Ending with !important for CSS property.

    B
    1. Ending with !important for CSS property. 2. Inline CSS 3. Internal CSS 4. External CSS

    C
    1. External CSS 2. Internal CSS 3. inline CSS 4. Ending with !important for CSS property.

    D
    1. inline CSS 2. Ending with !important for CSS property. 3. Internal CSS 4.External CSS

    E
    1. Internal CSS 2. inline CSS 3. External CSS 4. Ending with !important for CSS property.

    Note: Not available
    1. Report
  3. Question: Which of the following is Google Chrome, Safari specific prefix?

    A
    -moz-

    B
    -ms-

    C
    -o-

    D
    -webkit-

    Note: Not available
    1. Report
  4. Question: Which of the following CSS rule is invalid?

    A
    p{margin-left:40px;}

    B
    p { margin-left : 40px ; }

    C
    p { margin - left : 40 px; }

    D
    All are valid

    Note: 1. Whitespace between value and unit is invalid. Example: 40 % 2. Whitespace in left or right side of - (dash sign) at a CSS property is invalid. Example: padding  -  left 3. Whitespace between (. or #) and selector name is invalid. Example: . box, # box
    1. Report
  5. Question: Which of the following statements are true about CSS?

    A
    Styles are cumulative.

    B
    Inherited styles can be overridden.

    C
    CSS priority is 1. Inline CSS 2. Internal CSS 3. External CSS

    D
    CSS priority is 1. External CSS 2. Internal CSS 3. Inline CSS

    Note: Not available
    1. Report
  6. Question: !important flag of CSS property is not capable of overriding inline, internal and external CSS?

    A
    True

    B
    False

    Note: p{ color: red !important; }
    1. Report
  7. Question: How can one CSS file import another CSS file?

    A
    @include url("basic.css")

    B
    @require url("basic.css")

    C
    @import url("basic.css")

    D
    All

    Note: Not available
    1. Report
Copyright © 2024. Powered by Intellect Software Ltd