• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Inclined Border

Webo

Otland 4ever
Joined
Oct 20, 2013
Messages
621
Solutions
10
Reaction score
229
Location
Warsaw
Maybe someone knows how to bend the border
C1pPOeh.png

Use css
 
HTML:
<section>

</section>

CSS:
section:nth-child(odd)::after {
  content: '';
  display: block;
  position: absolute;
  width: 300px;
  height: 1px;
  transform: skewY(+40deg);
  background-color: black;
  z-index: 1;
}
 
Back
Top