Responsive grid with CSS Grids

Responsive grid with CSS Grids

by jayesh1511

HTML

<div id="outer-rectangle">
<div id="slanted-rectangle">
</div>

CSS

#outer-rectangle {
  width: 75px;
  height: 75px;
  background: transparent;
  margin: auto;
  margin-top: 50px;
  border-color: #0010A9;
  border-width: 15px;
  border-style: solid;
}

#slanted-rectangle {
  width: 18px;
  height: 54px;
  background: #0010A9;
  margin: auto;
  margin-top: 10px;
  transform: skewX(-35deg);
}