blob: c3aea3b25c4581f9289da3466a79eb05995b3fca [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<title>Column and multicol content top overflow clipping</title>
<style>
.mc {
columns: 3;
column-gap: 15px;
column-fill: auto;
-webkit-columns: 3;
-webkit-column-gap: 15px;
width: 600px;
height: 100px;
margin: 100px;
}
</style>
</head>
<body>
<p>There should be a 100x100 blue square below.</p>
<div class="mc">
<div style="width:100px; height:100px; margin-left:-50px; margin-top:-80px; background:blue;"></div>
</div>
</body>
</html>