关于怎么用border实现三角形。圆形。以及给边框家阴影效果。

Posted dmiao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于怎么用border实现三角形。圆形。以及给边框家阴影效果。相关的知识,希望对你有一定的参考价值。

技术分享图片

使用border画原和三角形。以及加边框阴影效果。

html源代码:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="../css/border.css">
</head>
<body>
<header></header>
<article></article>
<section></section>
<div></div>
<footer></footer>
<div></div>
<div></div>
</body>
</html>
 
CSS源代码:
*{
margin: 0 auto;
}
header{
width: 0px;
height: 0px;
border-top: 50px solid red;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 50px solid transparent;
}
article{
width: 0px;
height: 0px;
border-top: 50px solid transparent;
border-left: 50px solid blue;
border-right: 50px solid transparent;
border-bottom: 50px solid transparent;
}
section{
width: 0px;
height: 0px;
border-top: 50px solid transparent;
border-left: 50px solid transparent;
border-right: 50px solid green;
border-bottom: 50px solid transparent;
}
div{
width: 0px;
height: 0px;
border-top: 50px solid transparent;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 50px solid orange;
}
footer{
width: 100px;
height: 100px;
border: 3px solid red;
box-shadow: brown 10px 10px 20px 6px;
margin-top: 30px;
}
footer+div{
width: 100px;
height: 100px;
border: 3px solid blue;
box-shadow: orange 10px 10px 20px 6px inset;
margin-top: 30px;
}
div+div{
width: 100px;
height: 100px;
border:3px solid palevioletred;
border-radius: 50%;
 
}

 

以上是关于关于怎么用border实现三角形。圆形。以及给边框家阴影效果。的主要内容,如果未能解决你的问题,请参考以下文章

用border属性实现三角形(上下左右,直角)

css3画矩形,矩形里面有多个圆圈,圆圈里面有字,如何实现?

css怎么实现小的倒三角

用CSS画一个带阴影的三角形的示例代码

怎样用css写出圆形边框

为圆形图像添加2种颜色的边框