1. Question: For the clear property, which of the following value is not valid?

    A
    none

    B
    left

    C
    right

    D
    top

    Note: Not available
    1. Report
  2. Question: Read the following:
    @page rotated {size: landscape}
    TABLE {page: rotated; page-break-before: right}
    What will this code do?

    A
    It will put all tables on a right-hand side landscape page.

    B
    It will rotate the page if the table is positioned at the right side.

    C
    It will keep the table in the landscape position and rotate the page.

    D
    None

    Note: Not available
    1. Report
  3. Question: What is the initial value of the opacity property?

    A
    1

    B
    0

    C
    normal

    D
    None

    Note: Not available
    1. Report
  4. Question: State whether the following statement is true or false. If a parent element display property is set to none, its children too will not be rendered.

    A
    True

    B
    False

    Note: Not available
    1. Report
  5. Question: Which of the following filters does SVG support?

    A
    SVG supports only CSS filters.

    B
    SVG supports CSS filters as well as 'filter' property of SVG

    C
    SVG supports only 'filter' property of SVG

    D
    SVG does not supports any filters

    Note: Not available
    1. Report
  6. Question: What will happen if the pause property is used as follows? h2 { pause: 40s 60s }

    A
    pause-before will be set to 40 seconds and pause-after will be set to 60 seconds.

    B
    pause-after will be set to 40 seconds and pause-before will be set to 60 seconds.

    C
    pause-after and pause-before will be set to 40 seconds.

    D
    pause-after and pause-before will be set to 60 seconds.

    Note: Not available
    1. Report
  7. Question: Which of the following properties allow percentages in their value fields?

    A
    font-size

    B
    font-variant

    C
    font-weight

    D
    line-height

    Note: Not available
    1. Report
  8. Question: Which of the following is not a valid value for the font-stretch property?

    A
    condensed

    B
    normal

    C
    semi-narrower

    D
    expanded

    E
    semi-expanded

    Note: Not available
    1. Report
  9. Question: Which of the following styles is valid?

    A
    order: "none";

    B
    order= "none";

    C
    order: none;

    D
    order= none;

    E
    None

    Note: Not available
    1. Report
  10. Question: Which one of the following is appropriate to mirror/flip text by using CSS3?

    A
    .mirror_text{ 
    -moz-transform: scaleX(-1); 
    -o-transform: scaleX(-1); 
    -webkit-transform: scaleX(-1); 
    transform: scaleX(-1); 
    filter: FlipH; -ms-filter: "FlipH"; 
    }

    B
    .mirror_text{ Box-reflect; 20px right; }

    C
    .mirror_text{ Box-reflect; 20px left; }

    D
    .mirror_text{ 
    -moz-transform: rotate(-180deg); 
    -webkit-transform: rotate(-180deg);
     transform: rotate(-180deg);
    }

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