0
help :)
hi, how can i solve this? Drag and drop from the options below to color the text in the paragraph with id "mytext" red. Also, add a black shadow to the text that is 5 pixels to the right and 3 pixels down. #mytext { text- : #000; : red; }
2 odpowiedzi
+ 3
The solution will be the following code!
#mytext{
text-shadow: 5px 3px #000;
color:red;
}
0
The solution will be the following code!
#mytext{
text-shadow: 5px 3px #000;
color:red;
}