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:

Explanation:
* 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.
CSS3 text-shadow Property; hyphens | CSS-Tricks
First one is: text-shadow: blue 1px 1px 1px
4
3
I agree
1
3
It’s text-shadow: blue 1px 1px 1px 2px;
Works in IE.
7
2
I agree, to me it also works in IE (blue 1px 1px 1px 2px)
In Chrome, however, this same option results in NO shadow at all.
Taking into account that Microsoft tends to favor answers that involve compatibility with IE, I would choose the given answer
https://www.w3schools.com/cssref/tryit.asp?filename=trycss3_text-shadow
3
0