<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> |