0
Fill in the blanks to make the first letter of the paragraph red and bold. Also, flip the paragraph upside down.
Fill in the blanks to make the first letter of the paragraph red and bold. Also, flip the paragraph upside down. p { :rotate(180deg); } p:: { : red; : bold; }
1 ответ
0
p {
transform:rotate(180deg);
}
p::first-letter{
color:red;
font-weight: bold;
}
I hope this will help you!!!!
Thanks!