1. Question: Consider the following font definition: font-weight:normal What is the other way of getting the same result?

    A
    font-weight:100

    B
    font-weight:900

    C
    font-weight:400

    D
    ont-weight:700

    Note: Not available
    1. Report
  2. Question: Consider the following code:
    div[class^="stronger"] { }
    {em
    ...
    }
    Which of the following statements is true?

    A
    It applies the rule only on divs who belong to a class that begins with "stronger".

    B
    It applies the rule only on divs of class "stronger".

    C
    It applies the rule only on divs who belong to a class which end with "stronger".

    D
    It applies the rule only on divs who belong to a class which does not contain "stronger" in its name.

    Note: Not available
    1. Report
  3. Question: For the clear property, which of the following values is not valid?

    A
    none

    B
    left

    C
    right

    D
    top

    Note: Not available
    1. Report
  4. Question: What will be the output of the following code?
    <style>
    .foo {
        width:100px;
        height:50px;
        border-width:3px;
        -webkit-border-image: 
            -webkit-gradient(linear, 0 0, 0 100%, from(black), to(red)) 1 100%;
        -webkit-border-image: 
            -webkit-linear-gradient(black, red) 1 100%;
        -o-border-image:
                 -o-linear-gradient(black, red)) 1 100%;
        -moz-border-image:
               -moz-linear-gradient(black, red) 1 100%;    
    
    }
    </style>
    
    <div  class="foo">Lorem</div>

    A
    The text "Lorem" will be colored black-red.

    B
    The div element will be colored black-red.

    C
    The border of div element will be colored black-red.

    D
    None

    Note: Not available
    1. Report
  5. 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
  6. 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
  7. 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
  8. 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
  9. 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
  10. 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
Copyright © 2025. Powered by Intellect Software Ltd