WGU C777
4.7 (3 reviews) Students also studied Terms in this set (108) Arts and Humanities Save
C777 Unit 6: Designing for Mobile D...
Teacher 40 terms cmwebPreview WGU C777 Web Development Appli...176 terms rhoov12Preview C777 Teacher 69 terms Clay_Bailey2Preview
C777 A
Teacher cmw Practice questions for this set Learn1 / 7Study using Learn Which development phase helps ensure cross-browser compatibility through coding standards?What is a characteristic of a web page with responsive design?The ability to resize to the screen size Which language provides dynamic content for a web page across all browsers?JavaScript Choose an answer 1Validation2Optimization 3Testing4Progressive Enhancement Don't know?
Which type of content should use an
The developer writes the following HTML code:
Which attribute should this developer use?loop Which attribute is used to display an image inside a
Given the following CSS code:
body {
color : white;
} Which part of an element is affected by the color property?Text What should be added first when embedding CSS in a single web page as an internal style sheet?A element to the
section What is the first character a developer should use for an id selector in CSS?# A developer has an image that needs to remain in the same place when the page is scrolled.Which CSS positioning scheme should this developer use?Fixed A developer needs two pixels of space on the left side of content relative to the border.Which CSS property should this developer use?padding-left: 2px;
What immediately encloses the padding in the CSS box model?Border What is the outermost box of the CSS box model? Margin Which markup positions an image so that the lower part of it is even with the lower part of adjoining text?
Which syntax for a CSS class floats images to the right? .floatright { float: right; 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?transition-timing-function Which CSS property should a developer use to specify the bottom of a 3D element?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?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;} } #animation {
position:relative;
animation-name: anim_01;
animation-duration: 4s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-play-state: running;
} How often does the animation play when it is invoked?Forever
Given the following CSS code:
div {
transition-property: opacity, left, top, height;
transition-duration: 5s;
transition-delay: 3s
} Which value determines how long the transition will last?
- seconds
Given the following CSS code:
.box {
width: 150px;
height: 150px;
background: red;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
-webkit-transition: background-color 2s ease-out;
-moz-transition: background-color 2s ease-out;
-o-transition: background-color 2s ease-out;
transition: background-color 2s ease-out;
}
.box:hover {
background-color: green;
cursor: pointer;
} Which color does this box turn when a user hovers a mouse pointer over it?Green with a time duration of two seconds