向这样的虚线梯形框有什么逻辑么?

https://img3.mukewang.com/5c4d66a70001dc5607340374.jpg

向这样的虚线梯形框有什么逻辑么?我是准备拿两个div去拼接的

收到一只叮咚
浏览 447回答 1
1回答

胡说叔叔

  .box{    position: relative;    width: 150px;    height: 100px;    border: 1px dashed grey;  }  .box::before{    content:'';    position: absolute;    width: 50px;    height: 30px;    background: #fff;    right: -1px;    top: -1px;  }  .box::after{    content:'';    position: absolute;    width: 57px;    border-bottom: 1px dashed grey;    transform: rotate(32deg);    right:-5px;    top: 14px;  }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript