1. 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
  2. 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
  3. 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
  4. 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
  5. Question: What is the best method to select all elements except for the last one in an unordered list?

    A
    Adding a class to each <li> element but last

    B
    Using li:not(:last-child) css selector

    C
    Using li:last-child selector

    D
    None

    Note: Not available
    1. Report
  6. Question: Which of the following will apply a black inner glow with 25% opacity to a page element?

    A
    box-shadow: 0 0 8px rgba(255,255,255, 0.25);

    B
    box-shadow: inset 0 0 8px rgba(0,0,0, 0.25);

    C
    box-shadow: 0 0 8px rgba(255,255,255, 25%);

    D
    box-shadow: inset 0 0 8px rgba(0,0,0, 25%);

    Note: Not available
    1. Report
  7. Question: Which of the following is the initial value for the column-fill property?

    A
    auto

    B
    balance

    C
    none

    D
    all

    Note: Not available
    1. Report
  8. Question: Which of the following can be used to add a shadow around the div element below? <div>Lorem ipsum</div>

    A
    box-shadow: 0 0 8px 2px #888;

    B
    border-shadow: 0 0 8px 2px #888;

    C
    div-shadow: 8px 2px 0 0 #888;

    D
    None

    Note: Not available
    1. Report
  9. Question: Which of the following will decrease 50px from a DIV element whose width is 100%?

    A
    width: calc(100% - 50px);

    B
    width: reduce(100% - 50px);

    C
    width: decrease(100% - 50px);

    D
    width: 100% - 50px;

    Note: Not available
    1. Report
  10. Question: Which of the following properties specifies the minimum number of lines of a paragraph that must be left at the bottom of a page?

    A
    orphans

    B
    widows

    C
    bottom

    D
    overflow

    E
    None

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