The CSS rule that sets the font size to 32 pixels is:
p {font-size: 32px;}
(Note that this rule is listed twice, but both instances are correct.) The other options are incorrect due to syntax errors.
(1 point)
Responses
p {size: 32px;}
p {size: 32px;}
p {font-size: 32px;}
p {font-size: 32px;}
p {font-size=32px;}
p {font-size=32px;}
p {size=32px;}
1 answer
The CSS rule that sets the font size to 32 pixels is:
p {font-size: 32px;}
(Note that this rule is listed twice, but both instances are correct.) The other options are incorrect due to syntax errors.