blob: 0c0a887ad3646ced875054a4c3287f7cfc4ea757 [file] [log] [blame]
<style>
section {
columns: 2;
column-gap: 0;
height: 200px;
width: 300px;
}
p {
padding: 0;
margin: 0;
}
.break-after {
-webkit-column-break-after: always;
}
.clipped {
background: blue;
color: white;
-webkit-clip-path: polygon(5px 5px, 60px 5px, 60px 20px, 5px 20px);
}
</style>
<section>
<p class="break-after">Hello</p>
<p class="clipped">World</p>
</section>