边框的样式:
solid 实线 dotted 点线 dashed 虚线 double 双线 inset 三维立体效果
边框有3个元素,用法是 border-top:10px soild red;
border-top:上边
border-bottom:下边
border-left:左边
border-right:右边
例子:
CSS画出一个三角形,
CSS2 引入了边框颜色值 transparent。这个值用于创建有宽度的不可见边框。请看下面的例子:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>透明边框</title>
<style>
body{
background:#333300;
}
#a{
width:0px;
height:0px;
border-top:30px solid red;
border-bottom:30px solid transparent;
border-left:30px solid transparent;
border-right:30px solid transparent;
}
</style>
</head>
<body>
<div id=a></div>
</body>
</html>
设置透明边框的好处是如果页面背景不是白色的话,设置了透明边框后,边框就看不到,普通方法让边框颜色设置为白色,如果背景不是白色而是其他颜色的话,就能看出露出一块白色的地方。