Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html>
<head>
<title>margin-trim: flex-column-inline-multiline</title>
<link rel="author" href="mailto:sammy.gill@apple.com">
<link rel="match" href="flex-column-inline-multiline-ref.html">
<meta name="assert" content="inline-start should be trimmed for all items on the first flex line and inline-end should be trimmed for all items on the last flex line">
<style>
flexbox {
display: flex;
width: min-content;
height: 100px;
flex-direction: column;
flex-wrap: wrap;
margin-trim: inline;
}
item {
display: block;
background-color: green;
width: 50px;
height: 50px;
margin-inline-start: 10px;
margin-inline-end: 20px;
}
</style>
</head>
<body>
<flexbox>
<item></item>
<item></item>
<item></item>
<item></item>
</flexbox>
</body>
</html>