1. Question: Which of the following is not a valid value for the font-smooth property?

    A
    auto

    B
    never

    C
    always

    D
    normal

    E
    length

    Note: Not available
    1. Report
  2. Question: Which of the following option does not exist in media groups available in CSS3?

    A
    continuous or paged

    B
    visual or tactile

    C
    grid or bitmap

    D
    braille or screen

    Note: Not available
    1. Report
  3. Question: Which of the following is not a valid page break?

    A
    page-break-inside

    B
    page-break-outside

    C
    page-break-before

    D
    page-break-after

    E
    None

    Note: Not available
    1. Report
  4. Question: Which statement is correct given the following? box-shadow:30px 20px 10px 5px black;

    A
    The shadow will be spread out to 30px top, 20px right, 10px bottom, 5px left.

    B
    The position of the horizontal black shadow is 30px and the position of the vertical black shadow is 20px and blur distance is 10px and size of shadow is 5px.

    C
    The position of the vertical black shadow is 30px and the position of the horizontal black shadow is 20px and size of shadow is 10px and blur distance is 5px.

    D
    The shadow will be spread out to 30px top and bottom, 20px left and right with 10px blur distance, 5px shadow size.

    Note: Not available
    1. Report
  5. Question: The min-width property cannot be applied to the following element:

    A
    button

    B
    span

    C
    table row

    D
    form

    Note: Not available
    1. Report
  6. Question: Given the following problem: A drop shadow needs to appear only at the bottom, and no images should be used. Consider the following code:
    -moz-box-shadow: 0px 4px 4px #000;
    -webkit-box-shadow: 0px 4px 4px #000;
    box-shadow-bottom: 5px #000;
    However, this produces shadows on the rest of the element. Which of the following code snippets will correct the issue?

    A
    border-bottom:5px solid #ffffff; 
    -webkit-box-shadow: 0px 5px #000000; 
    -moz-box-shadow: 0px 5px #000000; 
    box-shadow: 0px 5px #000000;

    B
    -webkit-box-shadow: 0 4px 4px -2px #000000;
     -moz-box-shadow: 0 4px 4px -2px #000000; 
    box-shadow: 0 4px 4px -2px #000000;

    C
    -webkit-box-shadow: 0 4px 4px -2px inside #000000; 
    -moz-box-shadow: 0 4px 4px -2px inside #000000; 
    box-shadow: 0 4px 4px -2px inside #000000;

    D
    None

    Note: Not available
    1. Report
  7. Question: Consider the following code: body { text-replace: "a" "b" "b" "c" } What will be the output of the following string if the text-replace style is implemented? andy lives behind cafe

    A
    ndy lives behind cbfe

    B
    cndy lives cehind ccfe

    C
    andy lives behind cafe

    D
    andy lives cehind bafe

    Note: Not available
    1. Report
  8. Question: What is the default value of the transform-style property?

    A
    preserve-3d

    B
    flat

    C
    none

    D
    preserve

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

    A
    img { float= left }

    B
    img { float: left here }

    C
    img { background: "black" }

    D
    img { border-width: 10 }

    E
    All

    Note: Not available
    1. Report
  10. Question: Suppose that a <tr> tag has 10 <td> tags. In this case which statement is correct given the following?
    td:nth-child(3n+0){
        background-color: orange;
    }

    A
    It returns a syntax error.

    B
    The background color of the fourth td will be orange.

    C
    The background color of the fourth td will be orange.

    D
    The background color of the third td will be orange.

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