博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css绘制三角形
阅读量:6422 次
发布时间:2019-06-23

本文共 1024 字,大约阅读时间需要 3 分钟。

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<title>css绘制三角形</title>
<style>
.triangle-up {
width:0;
height:0;
border-left:30px solid transparent;
border-right:30px solid #fff;
}
.triangle-up {
width:0;
height:0;
border:30px solid transparent;
border-bottom-color:#fff;
}

.triangle-down {

width:0;
height:0;
border-left:30px solid transparent;
border-right:30px solid transparent;
border-top:30px solid #0066cc;
}
.triangle-left {
width:0;
height:0;
border-top:30px solid transparent;
border-bottom:30px solid transparent;
border-right:30px solid yellow;
}
.triangle-right {
width:0;
height:0;
border-top:50px solid transparent;
border-bottom: 50px solid transparent;
border-left: 50px solid green;
}
</style>
</head>
<body style="background:#000">
<div class="triangle-up"> <!--向上的三角--> </div>
<div class="triangle-down"> <!--向下的三角--> </div>
<div class="triangle-left"> <!--向左的三角--> </div>
<div class="triangle-right"> <!--向右的三角--> </div>
</body>
</html>

转载于:https://www.cnblogs.com/studyh5/p/7874522.html

你可能感兴趣的文章
docker部署和使用(一)
查看>>
CMB面试准备-基础
查看>>
python中的json和pickle
查看>>
Node学习4-Buffer模块
查看>>
自定义标签简介
查看>>
DEDE搜索结果按点击排序的方法
查看>>
海康威视复赛题 ---- 碰撞避免方案(1)
查看>>
PHP小知识
查看>>
CRT团队组员博客地址统计
查看>>
让 webpack 加载 Source Map
查看>>
旋转的星空
查看>>
解决inline-block左右不能对齐
查看>>
Fragment的使用
查看>>
JS面向对象编程之继承
查看>>
Javascript的this用法
查看>>
多版本并发控制MVCC
查看>>
Jmeter察看结果树的响应数据中的中文显示乱码问题处理
查看>>
【Oracle数据库】误删表空间文件【ora-01033ORA-01110】解决办法
查看>>
希尔排序
查看>>
Css不规则背景图片在导航里居中显示
查看>>