- 1
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; }
3 Answers
+ 1
p {
transform:rotate(180 deg);
}
p::first-letter {
color:red;
font-weight:bold;
}
You can just start the css lesson again and revise the concept of each thing used like property transform, color, font-weight etc.
https://www.sololearn.com/Course/CSS/?ref=app
0
0
Q