1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. 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
  7. Question: What is the maximum value that can be given to the voice-volume property?

    A
    10

    B
    100

    C
    500

    D
    None

    Note: Not available
    1. Report
  8. Question: What is the initial value of the font-size property?

    A
    small

    B
    medium

    C
    large

    D
    default

    Note: Not available
    1. Report
  9. Question: Is there a way to create a pure CSS3 text color gradient?

    A
    Yes, using the text-gradient property.

    B
    Yes, but only for headings.

    C
    There is no way to do a text color gradient with CSS3.

    D
    one of the above.

    Note: Not available
    1. Report
  10. Question: Consider the following code: border-opacity:0.7; Given a div element that needs to have a transparent red border, which of the following code samples will work in conjunction with the code above to accomplish the requirement?

    A
    border: 1px solid rgba(255, 0, 0, 0.7);

    B
    border: 1px solid rgb(255, 0, 0, 0.7);

    C
    border: 1px solid rgba(255, 255, 0, 0.7);

    D
    border: 1px solid red; opacity: 0.7;

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