Test Series - css

Test Number 37/59

Q: Which of the following selector same as :after; changed under CSS3 to make pseudo-elements obvious?
A. ::after
B. :after
C. #after
D. none of the mentioned
Solution: Example: div::after {content: url(sectionend.gif);}
Q: Which of the following property controls CSS counter values?
A. counter-increment
B. counter-decrement
C. counter
D. 
Solution: Syntax: counter-increment: counter-name1 [integer] ... counter-nameN [integer] | none |  inherit
Q: Which of the following property contains a list of one or more counter names to be cleared or set to a particular value?
A. counter
B. counter-origin
C. counter-reset
D. 
Solution: Syntax: counter-reset: counter-name1 [integer] ... counter-nameN [integer] | none |inherit
Q: Which of the following property is used in conjunction with the :before or :after pseudo-elements?
A. text
B. generated-content
C. content
D. 
Solution: Syntax: content: { { string | uri | counter}}
Q: Which of the following property defines the text selection policy for various portions of a document?
A. user-origin
B. user-select
C. user
D. 
Solution: Syntax: user-select: all | none | text
where the default value all allows for selection.
Q: Which of the following CSS3 property can be used to allow line breaks within words?
A. word-wrap
B. word-break
C. line-wrap
D. line-break
Solution: Syntax: word-break: break-all | keep-all | normal
Q: Which of the following property can be used to set text flow appropriate for European alphabets or East Asian alphabets?
A. writing-mode
B. language-mode
C. text-mode
D. reading-mode
Solution: Syntax: writing-mode: bt-lr | bt-rl
Q: Which of the following property is used to zoom in or out on an element?
A. zoom
B. zoom-set
C. zoom-in
D. zoom-out
Solution: Syntax: zoom: float | percentage | normal
Q: Which of the following property is used to describe all transition-related properties at once?
A. transition-set
B. transition-wrap
C. transition
D. animation
Solution: Syntax: transition: transition-property transition-duration transition-timing-function transition-delay
where the individual transition properties are defined in their own entries. Multiple
transitions can be listed separated by commas.
Q: Which of the following property is used to define which properties a transition will be applied to?
A. transition
B. transition-property
C. transition-wrap
D. transition-style
Solution: Syntax: transition-property: all | none | property-name-1 [,...property-name-N]

You Have Score    /10