JSFiddle - React, Tailwind, and code Playground
by thcipriani
HTML
<div class="ticket"><span class="circle"></span><a href="#">css</a></div>
<div class="ticket"><span class="circle"></span><a href="#">html5</a></div>
<div class="ticket"><span class="circle"></span><a href="#">design</a></div>
<div class="ticket"><span class="circle"></span><a href="#">dev</a></div>
CSS
* {
margin: 0;
padding: 0;
}
.ticket {
font-family: arial;
font-size: 12px;
position: relative;
float: left;
padding: 7px 3px;
margin: 0px 5px 5px 0;
background: green;
}
.ticket:after, ticket:before{
content: "";
position: absolute;
z-index: 100;
top: 0;
}
.ticket:before {
border-right: #fff 7px solid;
border-bottom: #fff 7px solid;
-webkit-border-radius: 0 0 20px 0;
-moz-border-radius: 0 0 20px 0;
border-radius: 0 0 20px 0;
}
/*.ticket:after {
border-right: #fff 7px solid;
border-bottom: #fff 7px solid;
-webkit-border-radius: 0 0 0 20px;
-moz-border-radius: 0 0 0 20px;
border-radius: 0 0 0 20px;
}*/