This may take you a little time to accomplish it , but i think it valueable.The quiz below is very funny, test what degree you master the css3.
1.Can you can specify more than one box shadow to an element?
a.yes
b.no
2.box-shadow: 5px 5px 5px #888; What does the third value in the declaration specify?
a.X off set
b.Y offset
c.Blur radius
d.Margin
3.What does the a in RGBa stand for?
a.Alt-transparency
b.Alpha
c.Alphabetic
d.Alphanumberic
4.RGBa can not be applied to which of these sections?
a.Backgrounds
b.Borders
c.Shadows
d.None of the above. RGBa can be applied to any property associated with color
5.Which of these declarations will result in a box whose bottom right corner has a radius of 20px?
a.border-radius: 40px 20px 20px 80px;
b.border-radius: 40px 20px;
c.border-radius: 20px 20px 40px 20px;
d.border-radius: 20px 40px 60px 80px;
6.Is this a valid declaration, under CSS3? text-shadow: 0 1px 0 #fff, 0 -1px 0 #000;
a.Yes
b.No
7.Which of the below is a valid way to embed and use non-standard fonts?
a.@font-face {
font-family: ‘Droid Sans’;
src: href(‘/DroidSans.otf’) format(‘opentype’);
}
b.@font-face {
font-family: ‘Droid Sans’;
href: url(‘/DroidSans.otf’) format(‘opentype’);
}
c.@font-face {
add-font: ‘Droid Sans’;
src: url(‘/DroidSans.otf’) format(‘opentype’);
}
d.@font-face {
font-family: ‘Droid Sans’;
src: url(‘/DroidSans.otf’) format(‘opentype’);
}
8.Can the values of red, green and blue be interchanged in the RGBa notation?
a.Yes
b.No
9.Which of these is a keyword that can be used when using the box-shadow property?
a.Engrave
b.Emboss
c.Inset
d.Bevel
10.Can you use a negative number as the blur radius value?
a.Yes
b.No
11.Including the optional parameters, how many parameters does a box shadow declaration take?
a.3
b.4
c.5
d.This is a trick question. The correct answer is not a choice.
12.Which new property, introduced in CSS3, allows you to wrap long words?
a.auto-word-wrap
b.word-wrap-on
c.wrap
d.word-wrap
13.Which vendor specific prefix do you have to use to target Opera?
a.-opera-
b.-o-
c.-vendor-
d.-custom-
14.Which of the following pseudo selectors isn’t a part of CSS3?
a.enabled
b.disabled
c.empty
d.visible
15.What does the :empty pseudo class target?
a.Matches elements that are invisible
b.Matches elements that have no parents
c.Matches elements that have no children
d.Matches elements that have no CSS associated with it.
16.Using the border-radius property, you can style either all four borders or none at all. This statement is..
a.True
b.False
17.Will the :empty pseduo class target an element if it only contains comments inside?
a.Yes
b.No
The correct answers:
acbdaadbcbddbdcba
