0
I'm Stuck on This css Text Shadow Question.
I got the first fill in the blank, but the last two I can't figure out. Here is the question: Create a text shadow with horizontal and vertical distance of 5px and blur radius of 2px p { text-shadow : 5px ___ ___; }
4 ответов
+ 4
it should look like this
p{horizontal-distance vertical-distance blur redius;}
Ex: p{5px 5px 2px 2px; }
+ 3
p { text-shadow : 5px _5px_ _2px; }
right one.
0
p{
text-shadow: 5px 5px 2px ;
}
- 1
CODY HANDY
Check this out
https://www.sololearn.com/learn/CSS/1094/