Loading...
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?

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 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?

Which property should a developer use to ensure that a background image appears only once?

Which CSS code block styles the <div> tag with a border image that is 80 pixels wide, 40 pixels high, and round?