paper-corners.png

<aside> 📌 How to add these paper corners to text boxes in a Carrd.co site

</aside>

Step 1 – add the box

position: relative;
background-color: #EBEBEB;
padding: 15px 20px;
min-height: 200px;

Step 2 – add the corner

<style>
.paper:before {
content: '';
position: absolute;
top: 0; 
right: 0;
border-top: 15px solid #f8f8f8;
border-left: 15px solid #E0E0E0;
width: 0;
}
</style>