- Background image
- Border color
- Border radius
- Border width
- Borders
- Class attribute
- Color
- Comment
- First-child selector
- Font family
- Font size
- Font style
- Font weight
- Height
- Linking a style sheet
- Margin
- N-th-child selector
- Overflow property
- Padding
- Pixels
- Position property
- Rounding an image
- Selectors
- Text align
- Transition property
- Width
CSS
CSS margin: The Margin Property
The CSS margin
property creates space around elements. Margins define the outer space of elements, helping to separate and position them effectively on a web page.
How to Use CSS margin
You can apply margins using the margin
shorthand property or set margins for individual sides with specific properties.
/* Shorthand for all four sides */
.element {
margin: 10px;
}
/* Individual sides */
.element {
margin-top: 10px;
margin-right: 15px;
margin-bottom: 5px;
margin-left: 20px;
}
margin
: Applies margin to all four sides of an element.margin-top
,margin-right
,margin-bottom
,margin-left
: Specifies margin values for each side individually.
When to Use CSS margin
Separating Elements
Margins help create space between elements, ensuring they don't touch each other and maintaining a clean layout.
.card {
margin-bottom: 20px;
}
Centering Elements
By setting auto margins, you can center block elements horizontally within their container.
.container {
margin: 0 auto;
}
Responsive Design
Using percentages for margins, you can create layouts that adjust to different screen sizes.
.responsive-box {
margin: 5%;
}
Examples of Using margin in CSS
Countless websites use the CSS margin
property to enhance layout and design.
Blog Websites
A blog might use margins to separate its article sections, improving readability.
.article {
margin-bottom: 30px;
}
E-commerce Sites
An e-commerce site might center its product listings using auto margins.
.product-listing {
margin: 0 auto;
width: 80%;
}
Landing Pages
A landing page might use responsive margins to adjust the spacing of its content sections on different devices.
.section {
margin: 10% 5%;
}
Learn More About CSS margin
CSS Margin vs. Padding
Margins create space around an element, while padding adds space within an element, between its content and its border. Both are crucial for layout design but serve different purposes.
.box {
margin: 20px; /* Space outside the box */
padding: 15px; /* Space inside the box */
border: 1px solid black;
}
Advanced Margin Techniques
Responsive design often requires adjusting margins based on screen size. Media queries are a powerful tool for this.
@media (max-width: 600px) {
.responsive-margin {
margin: 10px;
}
}
Inheriting Margins
By default, child elements don't inherit the margin
value of their parent elements. However, you can explicitly set margin
to inherit
for consistent styling.
.parent {
margin: 20px;
}
.child {
margin: inherit;
}
Using the Margin Shorthand
The CSS margin
shorthand property can accept multiple values simultaneously. Using the shorthand syntax, you can set specific margins for each side of an HTML element.
/* Uniform margin */
p {
margin: 20px;
}
/* Vertical | Horizontal */
div {
margin: 10px 20px;
}
/* Top | Horizontal | Bottom */
button {
margin: 5px 15px 10px;
}
/* Top | Right | Bottom | Left */
header {
margin: 10px 20px 15px 5px;
}
Combining Margin with Other CSS Properties
Combining margin
with properties like padding
and border
provides greater control over element layout and spacing.
.box {
margin: 20px;
padding: 10px;
border: 2px solid #ccc;
}
<div class="box">
A box with combined margin, padding, and border properties.
</div>
Sign up or download Mimo from the App Store or Google Play to enhance your programming skills and prepare for a career in tech.