1. Question: What is the initial value of the marquee-speed property?

    A
    slow

    B
    normal

    C
    fast

    D
    none

    Note: Not available
    1. Report
  2. Question: Which of the following will apply a gradient transition to #DemoGradient using CSS3?

    A
    @-webkit-keyframes pulse #DemoGradient { 0% { background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(196,222,242)), color-stop(0.5, rgb(242,242,242)), color-stop(1, rgb(240,240,240))); } 50% { background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(222,252,255)), color-stop(0.5, rgb(242,242,242)), color-stop(1, rgb(240,240,240))); } 100% { background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgb(196,222,242)), color-stop(0.5, rgb(242,242,242)), color-stop(1, rgb(240,240,240))); } }

    B
    #DemoGradient{ background: -webkit-linear-gradient(#C7D3DC,#5B798E); background: -moz-linear-gradient(#C7D3DC,#5B798E); background: -o-linear-gradient(#C7D3DC,#5B798E); background: linear-gradient(#C7D3DC,#5B798E); -webkit-transition: background 1s ease-out; -moz-transition: background 1s ease-out; -o-transition: background 1s ease-out; transition: background 1s ease-out; background-size:1px 200px; border-radius: 10px; border: 1px solid #839DB0; cursor:pointer; width: 150px; height: 100px; } #DemoGradient:Hover{ background-position:100px; }

    C
    It is not possible to apply a gradient transition using only CSS3.

    D
    None

    Note: Not available
    1. Report
  3. Question: Using height on transitions is not possible with:

    A
    height:auto

    B
    height:100%

    C
    height:0

    D
    max-height:100%

    Note: Not available
    1. Report
  4. Question: Consider the following problem: When trying to apply a CSS3 style to a label of a checked radio button like this: .... <style> label:checked { font-weight: bold; } </style> .... <input type="radio" id="rad" name="radio"/> <label for="rad">A Label</label> This does not produce the desired effect. Which of the following snippets will correct issue?

    A
    It is not possible to style.

    B
    <input id="rad" type="radio" name="rad"><label "rad">A Label</label>

    C
    input[type="radio"]:checked+label{ font-weight: bold; }

    D
    input[type="radio"]:checked@label{ font-weight: bold; }

    Note: Not available
    1. Report
  5. 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
  6. Question: Is it possible to use transition animations with a gradient background?

    A
    Yes

    B
    No

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