Multiple choice css

How do you change the left margin of an element?

  1. padding:

  2. indent:

  3. margin:

  4. text-indent:

  5. margin-left:

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

margin-left specifically sets the left margin space. Option A's padding is internal space between border and content, C's margin sets all sides, D's text-indent only affects first line text, and B's indent doesn't exist.