<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>渐变梯形</title> <style> .trapezoid { display: inline-block; width: 100px; height: 100px; background: linear-gradient(to right, blue, red); clip-path: polygon(0 0, 100px 20px, 100px 80px, 0px 100px); } </style> </head> <body> <div class="trapezoid"></div> </body> </html>