0
点赞
收藏
分享

微信扫一扫

css 流式布局

爱写作的小土豆 2024-03-17 阅读 16
css前端

HTML:

<div class="box"></div>

CSS:

.box{
    width:0;
    height:0;
    border-top:40px solid transparent;
    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:40px solid pink;

}

效果: 

举报

相关推荐

0 条评论