<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
.a{
border-bottom:1px solid #aaa
height:50px
width:100px
position:relative
overflow:hidden
}
.b{
position:absolute
display:block
top:0px
left:0px
width:100px
height:50px
}
.b i,.b em{
position:absolute
left:0px
bottom:0px
border-color:transparent
border-color:rgba(255,255,255,0)
border-style:solid
border-width:0 50px 50px 50px
}
.b i{
border-bottom-color:#aaa
}
.b em{
border-bottom-color:#FFF
bottom:-1px
}
.text{
position:absolute
bottom:10px
background:none
border:none
outline:none
text-align:center
width:100%
}
</style>
</head>
<body>
<div class = "a">
<span class = "b">
<i></i>
<em></em>
</span>
</div>
</body>
</html>
我们的思路是使用border边框来实现三角形的样式,因为border的边框是由四个三角形组成的。
请点击输入图片描述
首先我们创建一个带边框的div:
具体代码实现如下:
width: 40px
height: 40px
border-width: 40px
border-style: solid
border-color: red green blue brown
请点击输入图片描述
然后我们将内部DIV的宽高设置为0:
width: 20px
height: 20px
border-width: 10px
border-style: solid
border-color: red green blue brown
请点击输入图片描述
将其他的三个边框给取消点:
width: 0
height: 0
border-width: 40px
border-style: solid
border-color: red transparent transparent transparent
请点击输入图片描述
利用更改border的边框,我们可以随意控制写出我们想要的三角形,通过控制边框的大小来实现三角形的大小,通过控制边框的位置来改变三角形的位置。
请点击输入图片描述
6
使用上面的方式实现三角形有一个问题就是,三角形的方位不太好控制,但是使用其他的方式依然会面临这样的问题。
请点击输入图片描述
新建文本文档】在桌面新建一个文本文档,并命名为“三角形”,打开新建的文本文档,把html里的doctype、head、body等框架搭好。
【注意】可以在写完之后再重新重命名为.html文件。
2
【创建div并用border属性控制】
布局div,并命名id="tri",用CSS来控制div,在style里面,使用border属性对div进行控制,
#tri{
width: 0px
height: 0px
border-top: 400px solid red
border-right: 400px solid blue
border-bottom: 400px solid green
border-left: 400px solid yellow
}
【注意】div的长宽设为0,border为边框,会看到如下四个三角状的图形。
3
【修改并选择自己想要的三角形】
上述代码画的还不是三角形,但是是四个三角,只要将border周边的颜色变成白色就可以了,例如除了border-bottom: 100px solid green其余全变为white,就会看到如下效果,当然你也可以根据自己需要来调整。
此外可以将border-top的像素设为0;其余两边也调小一点并且颜色设为白色,就会只看到底下的一个三角形了。
【注意】根据自己实际来挑选自己想要达到的效果。图一图二效果不同,就是border设定不同的原因。
4
代码如下仅做参考:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8">
<title>三角练习</title>
<style>
#tri{
width: 0px
height: 0px
border-top: 0px solid white
border-right: 100px solid white
border-bottom: 400px solid green
border-left: 100px solid white
}
</style>
</head>
<body>
<div id="tri"></div>
</body>
</html>
END
画圣诞树
【画两个三角】
用上面三角形的基础,先画出两个大小不同三角形。
#tri1{
width: 0px
height: 0px
border-top: 100px solid white
border-right: 100px solid white
border-bottom: 100px solid green
border-left: 100px solid white
}
#tri2{
width: 0px
height: 0px
border-top: 200px solid white
border-right: 200px solid white
border-bottom: 200px solid green
border-left: 200px solid white
}
【利用浮动以及margin调到合适位置】
将第一个小三角形浮动起来,这样就覆盖到第2个上面,然后利用margin值调动位置,最终显示出圣诞树的上面内容,代码如下,图如下。
#tri1{
width: 0px
height: 0px
border-top: 100px solid white
border-right: 100px solid white
border-bottom: 100px solid green
border-left: 100px solid white
float: left
margin-left: 100px
}
#tri2{
width: 0px
height: 0px
border-top: 200px solid white
border-right: 200px solid white
border-bottom: 200px solid green
border-left: 200px solid white
}
【画树干】
再加入一个div名字为footer,控制其大小形状与颜色,并用margin调整期位置。
#footer{
width: 100px
height: 200px
background: gray
margin-left: 150px
}
最终,经过调整得到一课圣诞树。如下图所示
完整代码如下,仅做参考
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8">
<title>圣诞树练习</title>
<style>
#header{
width: 0px
height: 0px
border-top: 100px solid white
border-right: 100px solid white
border-bottom: 100px solid green
border-left: 100px solid white
float: left
margin-left: 100px
}
#main{
width: 0px
height: 0px
border-top: 200px solid white
border-right: 200px solid white
border-bottom: 200px solid green
border-left: 200px solid white
}
#footer{
width: 100px
height: 200px
background: gray
margin-left: 150px
}
</style>
</head>
<body>
<div id="header"></div>
<div id="main"></div>
<div id="footer"></div>
</body>
</html>