CSS for button with right triangle at lower right [closed]

Change color, height and width as per your requirement.

div {
  height: 300px;
  background: red;
  position: relative;
}

div:before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  border-bottom: 80px solid white;
  border-left: 80px solid red;
  width: 0;
}
<div class="informational"></div>

Leave a Comment