CSS Margin Practice Questions with Solutions

Introduction

CSS margins create space outside an HTML element. They help separate elements from each other, making web pages cleaner and easier to read. You can set margins for all sides or control the top, right, bottom, and left sides individually. In this chapter, you’ll practice CSS margin properties through simple solved questions designed for beginners. CSS Margin Practice questions with solutions help to understand the concepts.


Question 1: Add Margin on All Four Sides

Problem Statement

Write CSS to add a 20px margin on all four sides of a <div> element.

CSS Code

div {
    margin: 20px;
}

Output

A 20px space is added outside the <div> on all four sides.

Explanation

  • margin creates space outside an element.
  • 20px applies the same margin to the top, right, bottom, and left.
  • It helps separate the <div> from nearby elements.

Question 2: Add Margin Only to the Top

Problem Statement

Write CSS to add a 30px margin to the top of a paragraph.

CSS Code

p {
    margin-top: 30px;
}

Output

The paragraph moves 30px downward, creating space above it.

Explanation

  • margin-top adds space above an element.
  • Only the top margin is affected.
  • The other three margins remain unchanged.

Question 3: Add Margin Only to the Bottom

Problem Statement

Write CSS to add a 25px margin below an <h2> heading.

CSS Code

h2 {
    margin-bottom: 25px;
}

Output

A 25px space appears below the <h2> heading.

Explanation

  • margin-bottom creates space below the element.
  • It helps separate headings from the content that follows.
  • This improves readability.

Question 4: Add Different Margins on Each Side

Problem Statement

Write CSS to apply the following margins to a <div>:

  • Top: 10px
  • Right: 20px
  • Bottom: 30px
  • Left: 40px

CSS Code

div {
    margin: 10px 20px 30px 40px;
}

Output

The <div> displays different amounts of space on each side.

Explanation

The four values represent:

  • 10px → Top
  • 20px → Right
  • 30px → Bottom
  • 40px → Left

This order always follows Top → Right → Bottom → Left (TRBL).


Question 5: Center a Div Horizontally

Problem Statement

Write CSS to horizontally center a <div> element using margins.

CSS Code

div {
    width: 300px;
    margin: auto;
}

Output

The <div> appears centered horizontally within its parent element.

Explanation

  • width gives the <div> a fixed width.
  • margin: auto; automatically calculates the left and right margins.
  • This is the most common method to horizontally center block-level elements.

Question 6: Add Margin Only to the Left

Problem Statement

Write CSS to add a 40px margin to the left side of a <div> element.

CSS Code

div {
    margin-left: 40px;
}

Output

The <div> moves 40px away from the left side.

Explanation

  • margin-left adds space to the left of an element.
  • Only the left margin changes.
  • The top, right, and bottom margins remain the same.

Question 7: Add Margin Only to the Right

Problem Statement

Write CSS to add a 50px margin to the right side of a paragraph.

CSS Code

p {
    margin-right: 50px;
}

Output

A 50px space is added to the right side of the paragraph.

Explanation

  • margin-right creates space on the right side.
  • It helps separate the paragraph from nearby elements.
  • Only the right margin is affected.

Question 8: Use Two Values with the Margin Property

Problem Statement

Write CSS to apply 20px margin to the top and bottom, and 40px margin to the left and right of a <div>.

CSS Code

div {
    margin: 20px 40px;
}

Output

The <div> displays:

  • 20px margin on the top and bottom
  • 40px margin on the left and right

Explanation

When two values are used:

  • First value → Top and Bottom
  • Second value → Left and Right

This is a shorter way to write margins.


Question 9: Use Three Values with the Margin Property

Problem Statement

Write CSS to apply:

  • Top: 10px
  • Left and Right: 20px
  • Bottom: 30px

CSS Code

div {
    margin: 10px 20px 30px;
}

Output

The <div> displays:

  • 10px top margin
  • 20px left and right margins
  • 30px bottom margin

Explanation

When three values are used:

  • First value → Top
  • Second value → Left and Right
  • Third value → Bottom

This shorthand reduces the amount of CSS code.


Question 10: Use a Negative Margin

Problem Statement

Write CSS to move a <div> 20px upward using a negative top margin.

CSS Code

div {
    margin-top: -20px;
}

Output

The <div> moves 20px upward, reducing the space above it.

Explanation

  • Negative margins move an element closer to surrounding elements.
  • margin-top: -20px; shifts the element upward.
  • Negative margins should be used carefully to avoid overlapping content.

Key Takeaways

  • Margins create space outside an element.
  • margin is a shorthand property for all four sides.
  • Individual margins can be set using margin-top, margin-right, margin-bottom, and margin-left.
  • margin: auto; is commonly used to center block-level elements horizontally.
  • The margin shorthand supports one, two, three, or four values.
  • Negative margins can move elements closer together.
  • Proper margin spacing improves webpage layout and readability.

Frequently Asked Questions (FAQs)

1. What is the CSS margin property?

The CSS margin property creates space outside an HTML element. It separates the element from surrounding elements.

2. What is the difference between margin and padding?

Margin creates space outside an element, while padding creates space inside an element, between the content and its border.

3. How do I center a block element using margin?

You can center a block-level element by giving it a fixed width and using:

margin: auto;

This automatically sets the left and right margins.

4. In what order are four margin values applied?

When four values are used, the order is:

  • Top
  • Right
  • Bottom
  • Left

A simple way to remember this is TRBL (Top, Right, Bottom, Left).

5. Can I use negative margins in CSS?

Yes. Negative margins move an element closer to other elements or shift its position. They should be used carefully to avoid layout issues.

6. What happens when I use two values with the margin property?

The first value applies to the top and bottom, while the second value applies to the left and right.

7. Why are margins important in web design?

Margins create spacing between elements, improve readability, and help build clean, organized, and responsive page layouts.

Written by Shubhranshu Shekhar, who has trained 20000+ students in coding.

Scroll to Top