CALL US NOW +61 434300216
Company Logo

T47 PEST CONTROL

24/7 ROUND THE CLOCK

Slanting Cut Tutorial

Example 1: Basic Slanting Cut

.basicSlantingCut {
  clip-path: polygon(0 0, 100% 0, 50% 100%, 0 100%);
  background-color: #4CAF50;
  height: 100px;
  width: 100%;
}

Example 2: Adjusting the Slant Angle

.slantAngle30 {
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
  background-color: #4CAF50;
  height: 100px;
  width: 100%;
}

Example 3: Reverse Slanting Cut

.reverseSlant {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
  background-color: #4CAF50;
  height: 100px;
  width: 100%;
}

Example 4: Double Slanting Cut

.doubleSlant {
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  background-color: #4CAF50;
  height: 100px;
  width: 100%;
}

Example 5: Practical Application (TopBar)

FBIGLI
/* Container */
.practicalExample {
  position: relative;
  background-color: #4CAF50;
  height: 40px;
  width: 100%;
  overflow: hidden;
}

/* White slanting cut overlay */
.slantingCutOverlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background-color: white;
  clip-path: polygon(0 0, 100% 0, 30% 100%, 0 100%);
}

/* Content positioned above the cut */
.content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}