pseudo element triangle border
.element:before {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 50px 0;
border-color: transparent grey transparent transparent;
position: absolute;
top: 0;
right: 0;
background-color: red;
}