Valid Web-Development-Applications Dumps shared by ExamDiscuss.com for Helping Passing Web-Development-Applications Exam! ExamDiscuss.com now offer the newest Web-Development-Applications exam dumps, the ExamDiscuss.com Web-Development-Applications exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Web-Development-Applications dumps with Test Engine here:
Which CSS property should a developer specify in the `a:hover` rule set to make the red box transparent?
Correct Answer: D
> "The `opacity` property in CSS defines the transparency level of an element. A value of `1` means fully visible; a value of `0` makes it completely transparent. When used in a hover state, such as `a:hover { opacity: 0; }`, it causes the element to fade out when hovered over." > > "Unlike `visibility: hidden`, which hides the element but retains its space in the layout, `opacity` allows for smooth visual transitions in transparency." References: * MDN Web Docs: opacity * CSS Visual Effects Module Level 1 ---