文章教程

纯CSS制作各种各样的网页图标(三角形、暂停按钮、下载箭头、加号等)

5/9/2018 9:37:41 PM 人评论 次浏览

三角形

<div class="box"></div>
<style>
.box{
            width: 0;
            height: 0;
            border-top: 50px solid transparent;
            border-bottom: 50px solid transparent;
            border-left: 50px solid transparent;
            border-right: 50px solid red;
}
</style>