How to create a ribbon shape in CSS
To help you visualize the logic step-by-step
so you can apply it easily on ANY SIDE you desire:
.bookmarkRibbon {
border: 50px solid blue; /* All borders set */
border-left: 0; /* Remove left border */
border-right: 30px solid transparent; /* Right transparent */
width: 100px; /* Increase element Width */
}
<div class="bookmarkRibbon"></div>