exam questions

Exam 70-480 All Questions

View all questions & answers for the 70-480 exam

Exam 70-480 topic 3 question 9 discussion

Actual exam question from Microsoft's 70-480
Question #: 9
Topic #: 3
[All 70-480 Questions]

HOTSPOT -
You are creating a custom style by using CSS3.
You have the following requirements to complete the style:
✑ If the text in a line must wrap to another line, the last word must be able to break across lines.
✑ All text must be black and have a blue shadow, such that the text appears to glow blue.
The text must look like the following:

You need to complete the CSS3 style.
How should you complete the relevant code? (To answer, select the appropriate option from each drop-down list in the answer area.)
Hot Area:

Show Suggested Answer Hide Answer
Suggested Answer:
* text-shadow
* hyphens: auto
Words can be broken at appropriate hyphenation points either as determined by hyphenation characters) inside the word or as determined automatically by a language-appropriate hyphenation resource (if supported by the browser or provided via @hyphenation-resource).
Conditional hyphenation characters inside a word, if present, take priority over automatic resources when determining hyphenation points within the word.
Reference: CSS3 text-shadow Property; hyphens | CSS-Tricks

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
MrEngineer
Highly Voted 5 years, 7 months ago
The correct answers are: text-shadow: blue 1px 1px 1px; hypens: auto;
upvoted 12 times
...
eMax
Highly Voted 5 years, 9 months ago
text-shadow: 1px 1px 2px blue - horizontal vertical blur-radius color none of the options in the sample will work
upvoted 7 times
...
stef1
Most Recent 5 years, 3 months ago
Correct, color should be the last one, but (tested in Firefox) my browser accepts the color at 1st position too. So text-shadow: blue 1px 1px 1px also works.
upvoted 1 times
...
Etnic
5 years, 8 months ago
text-shadow: h-shadow v-shadow blur-radius color|none|initial|inherit;
upvoted 6 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...