Multiple choice css

How do you change the left margin of an element?

  1. left-margin:

  2. margin:

  3. margin-left:

  4. text-indent:

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

margin-left specifically targets left-side spacing. Option A's left-margin is reversed syntax, B's margin affects all sides, and D's text-indent only indents the first line of text.