Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

WGU C777 Web Development Applications Complete Exam Study Guide with 100% Correct Answers | Expert Graded A+

Beoordeling
-
Verkocht
-
Pagina's
54
Cijfer
A+
Geüpload op
20-04-2026
Geschreven in
2025/2026

WGU C777 Web Development Applications Complete Exam Study Guide with 100% Correct Answers | Expert Graded A+ 1. HTML5, CSS, JavaScript - ANSWER The web development trifecta 2. main - ANSWER HTML5 tag defining the main body of a document. Cannot be the child of the header, nav, article, aside, or footer elements. 3. header and footer - ANSWER These elements can also be included in article, aside, nav, main, and section elements, not just on the page itself 4. source - ANSWER This element identifies the file(s) to use in a video or audio element 5. fixed - ANSWER In CSS, this causes the element to remain in the same position when the page is scrolled 6. inherit - ANSWER In CSS, this causes the element to inherit its parent's position 7. padding - ANSWER In the box model, this is the space between the content and the border 8. margin - ANSWER In the box model, this is the space between the border and surrounding elements 9. content, padding, border, and margin - ANSWER Add all of these up to get the full size of an element in the box model 10. element[attribute$=value] - ANSWER This CSS3 selector selects every instance of a specified element whose specified attribute ends with the specified value 11. element[attribute*=value] - ANSWER This CSS3 selector selects every instance of a specified element whose specified attribute contains the specified substring value 12. element[attribute^=value] - ANSWER This CSS3 selector selects every instance of a specified element whose specified attribute begins with the specified value 13. element:checked - ANSWER This CSS3 selector selects every checked instance of a specified element 14. element:disabled - ANSWER This CSS3 selector selects every disabled instance of a specified element 15. element:enabled - ANSWER This CSS3 selector selects every enabled instance of a specified element 16. element:first-of-type - ANSWER This CSS3 selector selects every instance of a specified element that is the first of its parent 17. element:last-of-type - ANSWER This CSS3 selector selects every instance of a specified element that is the last of its parent 18. element1~element2 - ANSWER This CSS3 selector selects every instance of element2 that is preceded by an instance of element1 where both have the same parent. element2 need not be immediately preceded by element1 19. multiple images - ANSWER CSS3 now allows this in the background 20. background-clip - ANSWER CSS3 property determining whether the background extends into the border or not (content, padding, or border) 21. background-origin - ANSWER CSS3 property defining the location to which the background-position property should be relative (content, padding, or border) 22. style guide - ANSWER A set of standards for the writing and/or design of documents 23. IE9 - ANSWER This version of IE is the first to support HTML5 24. Add them via JS, make them block via CSS - ANSWER What should you do to support HTML5 elements in pre-IE9 browsers. 25. selector - ANSWER The term for the part of CSS code that refers to the element you want to style 26. declaration - ANSWER In CSS, the term for a property and value pair. It must always end with a semicolon 27. rule - ANSWER In CSS, the name for a selector, property and value all grouped together 28. inheritance - ANSWER The word "cascading" in CSS refers to this concept 29. External, embedded, inline - ANSWER The cascading order of CSS style sheets, ordered from lowest priority to highest 30. rel, type, href - ANSWER Linking to a CSS file requires these attributes in the link element 31. style - ANSWER Embedded CSS should be placed in a block defined by this element 32. style - ANSWER Inline CSS should be placed in an attribute with this name 33. document flow - ANSWER The arrangement of content elements on a page and how the space is used. Does it fall from top to bottom in stacks, or does some content float to one side or the other? 34. curly braces - ANSWER These are not used when defining inline CSS styles 35. clear - ANSWER Use this CSS property to avoid having floating elements before/after another element 36. static - ANSWER In CSS, the "normal, or default", position of block elements within a page

Meer zien Lees minder
Instelling
WGU C777
Vak
WGU C777

Voorbeeld van de inhoud

WGU C777 Web Development Applications
Complete Exam Study Guide with 100%
Correct Answers | Expert Graded A+

1. HTML5, CSS, JavaScript - ANSWER The web development trifecta


2. main - ANSWER HTML5 tag defining the main body of a document.
Cannot be the child of the header, nav, article, aside, or footer elements.


3. header and footer - ANSWER These elements can also be included in
article, aside, nav, main, and section elements, not just on the page itself


4. source - ANSWER This element identifies the file(s) to use in a video or
audio element


5. fixed - ANSWER In CSS, this causes the element to remain in the same
position when the page is scrolled


6. inherit - ANSWER In CSS, this causes the element to inherit its parent's
position


7. padding - ANSWER In the box model, this is the space between the content
and the border


8. margin - ANSWER In the box model, this is the space between the border
and surrounding elements

,9. content, padding, border, and margin - ANSWER Add all of these up to get
the full size of an element in the box model


10.element[attribute$=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute ends with the
specified value


11.element[attribute*=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute contains the
specified substring value


12.element[attribute^=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute begins with the
specified value


13.element:checked - ANSWER This CSS3 selector selects every checked
instance of a specified element


14.element:disabled - ANSWER This CSS3 selector selects every disabled
instance of a specified element


15.element:enabled - ANSWER This CSS3 selector selects every enabled
instance of a specified element


16.element:first-of-type - ANSWER This CSS3 selector selects every instance
of a specified element that is the first of its parent


17.element:last-of-type - ANSWER This CSS3 selector selects every instance
of a specified element that is the last of its parent

,18.element1~element2 - ANSWER This CSS3 selector selects every instance
of element2 that is preceded by an instance of element1 where both have the
same parent. element2 need not be immediately preceded by element1


19.multiple images - ANSWER CSS3 now allows this in the background


20.background-clip - ANSWER CSS3 property determining whether the
background extends into the border or not (content, padding, or border)


21.background-origin - ANSWER CSS3 property defining the location to
which the background-position property should be relative (content,
padding, or border)


22.style guide - ANSWER A set of standards for the writing and/or design of
documents


23.IE9 - ANSWER This version of IE is the first to support HTML5


24.Add them via JS, make them block via CSS - ANSWER What should you
do to support HTML5 elements in pre-IE9 browsers.


25.selector - ANSWER The term for the part of CSS code that refers to the
element you want to style


26.declaration - ANSWER In CSS, the term for a property and value pair. It
must always end with a semicolon

, 27.rule - ANSWER In CSS, the name for a selector, property and value all
grouped together


28.inheritance - ANSWER The word "cascading" in CSS refers to this concept


29.External, embedded, inline - ANSWER The cascading order of CSS style
sheets, ordered from lowest priority to highest


30.rel, type, href - ANSWER Linking to a CSS file requires these attributes in
the link element


31.style - ANSWER Embedded CSS should be placed in a block defined by
this element


32.style - ANSWER Inline CSS should be placed in an attribute with this name


33.document flow - ANSWER The arrangement of content elements on a page
and how the space is used. Does it fall from top to bottom in stacks, or does
some content float to one side or the other?


34.curly braces - ANSWER These are not used when defining inline CSS
styles


35.clear - ANSWER Use this CSS property to avoid having floating elements
before/after another element


36.static - ANSWER In CSS, the "normal, or default", position of block
elements within a page

Geschreven voor

Instelling
WGU C777
Vak
WGU C777

Documentinformatie

Geüpload op
20 april 2026
Aantal pagina's
54
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$11.99
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper
Seller avatar
DrSammuel

Maak kennis met de verkoper

Seller avatar
DrSammuel TeachmeTutor
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
3
Lid sinds
3 maanden
Aantal volgers
0
Documenten
578
Laatst verkocht
1 week geleden
Turning Preparation into Achievement.

Welcome to my study resource hub! This account provides high-quality exam papers with clear and detailed elaborations designed to help students fully understand each topic and pass with confidence.

0.0

0 beoordelingen

5
0
4
0
3
0
2
0
1
0

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen