AND OA EXAM 2024/2025 REAL EXAM
VERSIONS AND A STUDY GUIDE
VERIFIED FOR GUARANTEED PASS
What is the outermost box of the CSS box model?
A) Border
B) Padding
C) Content
D) Margi
n Margin
Which markup positions an image so that the lower part of it is even with the
lower part of adjoining text?
A) <img src="sample.jpg" vertical-align="baseline">
B) <img src="sample.jpg" text-align="bottom">
C) <img src="sample.jpg" padding="baseline">
D) <img src="sample.jpg" margin="bottom">
<img src="sample.jpg" vertical-align="baseline">
Which syntax for a CSS class floats images to the right?
A) .floatright
{ float: right;
margin: 7px;
}
B) .floatright
< float:
right;
margin: 7px;
>
C) .float {
floatright:
right; margin:
7px;
}
D) .float <
float:
right;
margin:
7px;
>
,WGU C777 WEB DEVELOPMENT APPLICATIONS PA
AND OA EXAM 2024/2025 REAL EXAM
VERSIONS AND A STUDY GUIDE
VERIFIED FOR GUARANTEED PASS
.floatright
{ float:
right;
,WGU C777 WEB DEVELOPMENT APPLICATIONS PA
AND OA EXAM 2024/2025 REAL EXAM
VERSIONS AND A STUDY GUIDE
VERIFIED FOR GUARANTEED PASS
margin: 7px;
}
Which CSS transition should be used on an image to make it ease in when a user's
mouse hovers over that image?
A) transition-property
B) transition-duration
C) transition-timing-function
D) transition-delay
transition-timing-
function
Which CSS property should a developer use to specify the bottom of a 3D element?
A) transform
B) perspective
C) transform-style
D) perspective-
origin
perspective-origin
A web designer creates the following animation by using
CSS3: #texteffect {
position: relative;
animation-name:
scroll; animation-
duration: 5s;
animation-timing-function:
linear; animation-play-state:
running;
}
@keyframes scroll {
from {left: 0px;}
to {left: 200px;}
}
How does the content of the element move when the page loads?
, WGU C777 WEB DEVELOPMENT APPLICATIONS PA
AND OA EXAM 2024/2025 REAL EXAM
VERSIONS AND A STUDY GUIDE
VERIFIED FOR GUARANTEED PASS
A) From left to right one time
B) From left to right, repeating for as long as the page displays
C) From top to bottom one time
D) From top to bottom, repeating for as long as the
page displays From left to right one time
A web page includes the following CSS
code: @keyframes anim_01 {
0% {left: 0px; top: 0px;}
50% {left: 200px; top:
0px;} 100% {left: 600px;
top: 0px;}
}