使用CSS 做小三角边框,原理及实现
Posted 宁在春
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用CSS 做小三角边框,原理及实现相关的知识,希望对你有一定的参考价值。
前言:
这个也是我最近学习才发现的一个细节,就是常常会在一些网站,看到下面图中这样的一个小三角,以前没怎么学CSS,我一直以为它是个精灵图之类。
用三角形创建一个三角形原理
用纯CSS创建一个三角形的原理
一.原理
采用均分原理,把盒子分为4等份,4等份都是边框
实现效果
1.必须是块元素,设置边框
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.square
width: 150px;
height: 150px;
border-top: 60px solid yellow;
border-right: 60px solid yellowgreen;
border-left: 60px solid pink;
border-bottom: 60px solid purple;
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>
2.把宽和高都设置为0
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.square
width: 0px;
height: 0px;
border-top: 60px solid yellow;
border-right: 60px solid yellowgreen;
border-left: 60px solid pink;
border-bottom: 60px solid purple;
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>
3.把border-bottom去掉
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.square
width: 0px;
height: 0px;
border-top: 60px solid yellow;
border-right: 60px solid yellowgreen;
border-left: 60px solid pink;
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>
把左右边框设置为透明(transparent)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.square
width: 0px;
height: 0px;
border-top: 60px solid yellow;
border-right: 60px solid transparent;
border-left: 60px solid transparent;
</style>
</head>
<body>
<div class="square"></div>
</body>
</html>
以上是关于使用CSS 做小三角边框,原理及实现的主要内容,如果未能解决你的问题,请参考以下文章