Skip to content
On this page

🍉 css实现梯形

在日常开发学习中,有业务会用到梯形,我整理了一个画梯形的方法,以下是常见案例整理,一起看看吧....

html
<!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>Document</title>
    <style>
        .wrap{
            height:50px;
            width:240px;
            border:0px solid transparent;
            border-bottom:60px solid #696969;
            border-right:34px solid transparent;
        }
        
    </style>
</head>
<body>
    <div class="wrap">

    </div>
</body>
</html>
  • 好了,以上的总结就到此为止了,如果有疑问可以不问也可以联系作者。咱们下期再见! Good bye! 🌸

Released under the MIT License.