-1

Screenshot

I'm trying to achieve the shape via the picture attached, however I'm not going the right angles.

Lebrin
  • 11
  • 3

1 Answers1

0

.angle {
  --offset: 30px;

  background: steelblue;
  width: 250px;
  height: 40px;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--offset)) 100%, 0% 100%);
}
<div class="angle"></div>

in the above snippet I used clip-path to cut a portion of the rectangle. to learn more about it you can check the MDN web docs

KyloDev
  • 256
  • 1
  • 10