继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

纯css绘制三角形

什么鬼_呀你
关注TA
已关注
手记 21
粉丝 4
获赞 25

效果图1:

https://img1.mukewang.com/5b7a769a000143fa00890077.jpg

https://img1.mukewang.com/5b7a769a000112ad11500479.jpg

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
div {
    width: 0;/*去掉width,效果让人意外*/    
    border: 30px solid transparent;/*把边框颜色设为透明*/
    border-bottom: 30px solid red;/*下边的*/
    border-top: 30px solid blue;/*上边的*/
    border-right: 30px solid yellow;/*右边的*/
    border-left: 30px green solid;/*左边的*/
}
</style>
</head>
<body>
<div></div>
</body>
</html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP