This feature is not Baseline because it does not work in some of the most widely-used browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The margin-trim property allows the container to trim the margins of its children where they adjoin the container's edges.
margin-trim: none; margin-trim: block; margin-trim: block-start; margin-trim: block-end; margin-trim: inline; margin-trim: inline-start; margin-trim: inline-end; /* Global values */ margin-trim: inherit; margin-trim: initial; margin-trim: revert; margin-trim: revert-layer; margin-trim: unset;
noneMargins are not trimmed by the container.
blockMargins provided to the block children where they adjoin the container's edges are trimmed to zero without affecting the margins provided to the container.
block-startMargin of the first block child with the container's edge is trimmed to zero.
block-endMargin of last block child with the container's edge is trimmed to zero.
inlineMargins provided to the inline children where they adjoin the container's edges are trimmed to zero, without affecting the spacing at the beginning and end of the row.
inline-startMargin between the container's edge and the first inline child is trimmed to zero.
inline-endMargin between the container's edge and the last inline child is trimmed to zero.
| Initial value | none |
|---|---|
| Applies to | Block containers and multi-column containers. It also applies to ::first-letter. |
| Inherited | no |
| Computed value | as specified |
| Animation type | discrete |
margin-trim =
none |
[ block || inline ] |
[ block-start || inline-start || block-end || inline-end ]
Once support is implemented for this property, it will probably work like so:
When you've got a container with some inline children and you want to put a margin between each child but not have it interfere with the spacing at the end of the row, you might do something like this:
article {
background-color: red;
margin: 20px;
padding: 20px;
display: inline-block;
}
article > span {
background-color: black;
color: white;
text-align: center;
padding: 10px;
margin-right: 20px;
margin-left: 30px;
}
The problem here is that you'd end up with 20px too much spacing at the right of the row, so you'd maybe do this to fix it:
span:last-child {
margin-right: 0;
margin-left: 0;
}
It is a pain having to write another rule to achieve this, and it is also not very flexible. Instead, margin-trim could fix it:
article {
margin-trim: inline-end;
/* … */
}
Similarly, to remove left margin with the container's edge:
article {
margin-trim: inline-start;
/* … */
}
| Specification |
|---|
| CSS Box Model Module Level 4> # margin-trim> |
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | |
margin-trim |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
block |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
block-end |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
block-start |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
inline |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
inline-end |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
inline-start |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
none |
No | No | No | No | 16.4 | No | No | No | 16.4 | No | No | 16.4 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/CSS/margin-trim