Question 1 of 5 Share Facebook Twitter LinkedIn WhatsApp Email Copy Link Given the foliowing CSS code .box{ transition-property: background-color transition-duration: 28 transition-timing-function: ease-out transition-delay: 1s } How long does it take to complete the transition from the time it begins? A. 1 sec. B. 2 sec. C. 0 sec. D. 3 sec. Submit Answer
Question 2 of 5 Share Facebook Twitter LinkedIn WhatsApp Email Copy Link Given the following HTML code <DOCTYPE html> <html> <head> <title>Test </title> <style> a{ width:100px height: 100px: background-color:red; display:block; } a:hover { } </style> </head> <body> <a href="#">Box</a> </body> </html> Which CSS property should a developer specify in the `a:hover` rule set to make the red box transparent? A. filter B. visibility C. z-index D. opacity Submit Answer
Question 3 of 5 Share Facebook Twitter LinkedIn WhatsApp Email Copy Link A web page has a section that contains an <article> element. The element is always 10 pixels to the right of its normal position. Which type of layout positioning should the<article> element use? A. Static B. Absolute C. Fixed D. Relative Submit Answer
Question 4 of 5 Share Facebook Twitter LinkedIn WhatsApp Email Copy Link Which property should a developer use to ensure that a background image appears only once? A. background-repeat B. background-clip C. background-origin D. background-size Submit Answer
Question 5 of 5 Share Facebook Twitter LinkedIn WhatsApp Email Copy Link Which CSS code block styles the <div> tag with a border image that is 80 pixels wide, 40 pixels high, and round? A. div {border-image:url("waterfall.png") 40 80 round;} B. div {border-image:url("waterfall.png") 80 40 round;} C. div {border-image:url("waterfall.png") 40 80 round;} D. div {border-image:url("waterfall.png") 80 40 round;} Submit Answer