which of these are valid ways to use the css font - size property? choose all answers that apply: a font…

which of these are valid ways to use the css font - size property? choose all answers that apply: a font - size: 12 px; b font - size: 12pix; c font - size: 12px; d font - size: 12 pixels; e font - size: 12;

which of these are valid ways to use the css font - size property? choose all answers that apply: a font - size: 12 px; b font - size: 12pix; c font - size: 12px; d font - size: 12 pixels; e font - size: 12;

Answer

Brief Explanations:

In CSS, the correct unit for specifying font - size in pixels is "px". Option A has a space between the value and the unit which is incorrect. Option B uses "pix" which is not a valid unit. Option D uses "pixels" which is not the correct abbreviation. Option E has no unit. Option C is the correct way to use the font - size property with the "px" unit without any extra spaces or incorrect abbreviations.

Answer:

C. font - size: 12px;