名站导航为爱好css的朋友们提供相关的知识。
纯css教程写的手风琴切换实例
代码如下,可以直接复制粘贴到文档中,然后运行实例。
- 此篇文章具体介绍如下
圆:
.yuan{
width:100px;
height:100px;
-moz-border-radius:50%;
-webkit-border-radius:50%;
border-radius:50%;
background-color:red;
}
<div class="yuan"></div>
椭圆
.oval {
width: 200px;
height: 100px;
background-color: red;
-moz-border-radius: 100px / 50px;
-webkit-border-radius: 100px / 50px;
border-radius: 100px / 50px;
}
<div class="oval"></div>
箭头:
.arrow{
content: '';
position: absolute;
width: 30px;
height: 30px;
border: 10px solid #f5b24a;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
transform: rotate(-135deg);
border-top: none;
border-right: none;
top: 9px;
}
<span class="arrow"></span>
.rencentle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
<div class="rencentle"></div>
关于css的相关的知识就说到这里希望能够可以帮助更多的朋友们。,border,border-radius,图形,三角css教程 after before制作的边三角提示框