1. Question: There are various types of input fields in a HTML page. Choose the appropriate CSS3 code which will have an effect on all inputs, except checkbox and radio.

    A
    form input:not([type="radio"], [type="checkbox"]) { }

    B
    input:not([type="radio"]):not([type="checkbox"]) { }

    C
    input:not([type="radio & checkbox"]) { }

    D
    input:!([type="radio"]) , input:!([type="checkbox"]) { }

    Note: Not available
    1. Report
  2. Question: Is it possible to use transition animations with a gradient background?

    A
    Yes

    B
    No

    Note: Not available
    1. Report
  3. Question: What is the difference between float:left; vs display:inline-block;?

    A
    There is no difference, both of them have the same results.

    B
    display:inline-block; adds whitespace between the elements.

    C
    float:left; collapses the parent element on itself.

    D
    None

    Note: Not available
    1. Report
  4. Question: What is the range of values (in decimal notation) that can be specified in the RGB color model?

    A
    0 to 256

    B
    0 to 255

    C
    -250 to 250

    D
    -255 to 255

    Note: Not available
    1. Report
  5. Question: Which of the following are not valid values for the target-new property?

    A
    window

    B
    tab

    C
    none

    D
    parent

    E
    current

    Note: Not available
    1. Report
  6. Question: What will be the output of the following rule? em { color: rgba(0,0,255,1) }

    A
    Opacity 1 with solid red color

    B
    Opacity 0 with solid blue color

    C
    Opacity 0 with solid blue color

    D
    Opacity 1 with solid blue color

    E
    None

    Note: Not available
    1. Report
  7. Question: While rendering the following code, what is the role of "src" propery?
    @font-face {
        font-family: "calibriforh1";
        src: local("calibri"), url(calibri.woff);
    }
    h1 { font-family: "calibriforh1", arial, sans-serif; }

    A
    It's for searching the user's system for a "calibri" font, and if it does not exist, it will load the font from the server instead.

    B
    t's for searching the user's system for a "calibri" font, and if it does not exist, it will load user's system's default font instead.

    C
    It's for loading the user's system's default font.

    D
    None

    Note: Not available
    1. Report
  8. Question: Which of the following statements is true with regard to CSS3 transitions?

    A
    Using CSS transitions will slow down page upload and produce lag.

    B
    The completion of a CSS transition generates a corresponding DOM event. An event is fired for each property that undergoes a transition. This allows a content developer to perform actions that synchronize with the completion of a transition.

    C
    CSS transitions allow DOM events in CSS values to occur smoothly over a specified duration.

    D
    None

    Note: Not available
    1. Report
  9. Question: Given that one div element needs to be hidden and on active state needs to be displayed, what will be the output of the following code?
    div {
        display: none;
        -webkit-transition: opacity 1s ease-out;
        opacity: 0; 
    }
    
    div.active {
        opacity: 1;
        display: block;
    }

    A
    On active state the element is displayed.

    B
    On active state the element's opacity is changed to 1.

    C
    On active state the element's opacity is changed to 0.

    D
    Nothing will be shown.

    Note: Not available
    1. Report
  10. Question: Which of the given options is/are equivalent to the following rule? DIV { line-height: 1.2; font-size: 10pt }

    A
    DIV{ line-height: 1.2em; font-size: 10pt }

    B
    DIV{ line-height: 12em; font-size: 10pt }

    C
    DIV{ line-height: 120%; font-size: 10pt }

    D
    DIV{ line-height: 20%; font-size: 10pt }

    E
    DIV{ line-height: 80%; font-size: 10pt }

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