1. Question: Which of the following filters does SVG support?

    A
    SVG supports only CSS filters.

    B
    SVG supports CSS filters as well as 'filter' property of SVG

    C
    SVG supports only 'filter' property of SVG

    D
    SVG does not supports any filters

    Note: Not available
    1. Report
  2. Question: What will happen if the pause property is used as follows? h2 { pause: 40s 60s }

    A
    pause-before will be set to 40 seconds and pause-after will be set to 60 seconds.

    B
    pause-after will be set to 40 seconds and pause-before will be set to 60 seconds.

    C
    pause-after and pause-before will be set to 40 seconds.

    D
    pause-after and pause-before will be set to 60 seconds.

    Note: Not available
    1. Report
  3. Question: Which of the following properties allow percentages in their value fields?

    A
    font-size

    B
    font-variant

    C
    font-weight

    D
    line-height

    Note: Not available
    1. Report
  4. Question: Which of the following is not a valid value for the font-stretch property?

    A
    condensed

    B
    normal

    C
    semi-narrower

    D
    expanded

    E
    semi-expanded

    Note: Not available
    1. Report
  5. Question: Which of the following styles is valid?

    A
    order: "none";

    B
    order= "none";

    C
    order: none;

    D
    order= none;

    E
    None

    Note: Not available
    1. Report
  6. Question: Which one of the following is appropriate to mirror/flip text by using CSS3?

    A
    .mirror_text{ 
    -moz-transform: scaleX(-1); 
    -o-transform: scaleX(-1); 
    -webkit-transform: scaleX(-1); 
    transform: scaleX(-1); 
    filter: FlipH; -ms-filter: "FlipH"; 
    }

    B
    .mirror_text{ Box-reflect; 20px right; }

    C
    .mirror_text{ Box-reflect; 20px left; }

    D
    .mirror_text{ 
    -moz-transform: rotate(-180deg); 
    -webkit-transform: rotate(-180deg);
     transform: rotate(-180deg);
    }

    Note: Not available
    1. Report
  7. Question: What is the initial value of the marquee-speed property?

    A
    slow

    B
    normal

    C
    fast

    D
    none

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