Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!DOCTYPE html>
<html>
<head>
<title>margin-trim: block-container-block-start-self-collapsing-item-has-larger-block-start</title>
<link rel="author" title="Sammy Gill" href="mailto:sammy.gill@apple.com">
<link rel="match" href="block-container-block-start-self-collapsing-item-larger-block-start-ref.html">
<meta name="assert" content="self-collapsing margin at block-start has its block-start margin trimmed which would normally be used in collapsing with container"">
<style>
container {
display: block;
margin-trim: block;
margin-block-start: 10px;
}
item {
display: block;
margin-block-start: 40px;
width: 50px;
height: 50px;
background-color: green;
}
.collapsed {
margin-block-start: 100px;
height: 0px;
}
</style>
</head>
<body>
<item style="margin-block-start: 0px;"></item>
<container>
<item class="collapsed"></item>
<item></item>
</container>
</body>
</html>