css实现尖角div

来源:未知 责任编辑:智问网络 发表时间:2013-09-03 12:21 点击:

尖角在上面

效果图:

 \


代码:


[html]
<html> 
<head> 
<title>尖角div</title> 
<style type="text/css"> 
#top 

  width:400px; 
  height:250px; 
  border:3px solid;   /* 边框宽度为3px */ 
  position:relative; 

.sp1,.sp2 

  display:block; 
  height:0px; 
  width:0px; 
  position:absolute; 
  font-size:0; 
  line-height:0; 

.sp1 

  top:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */ 
  left:40px;   /* 它来确定尖角的位置 */ 
  border-top:0px; 
  border-bottom:6px solid black;  /* 注意颜色的变化 */ 
  border-right:6px solid white; 
  border-left:6px solid white; 

.sp2 

  top:6px;  /* 是自身边框宽度的2倍 */ 
  left:-3px; /* 是自身边框宽度的-1倍  */ 
  border-top:0px; 
  border-bottom:3px solid white; 
  border-right:3px solid black; 
  border-left:3px solid black; 

 
</style> 
</head> 
 
<body> 
<div id="top"> 
<span class="sp1"> 
<span class="sp2"></span> 
</span> 
</div> 
</body> 
 
</html> 

<html>
<head>
<title>尖角div</title>
<style type="text/css">
#top
{
  width:400px;
  height:250px;
  border:3px solid;   /* 边框宽度为3px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  top:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */
  left:40px;   /* 它来确定尖角的位置 */
  border-top:0px;
  border-bottom:6px solid black;  /* 注意颜色的变化 */
  border-right:6px solid white;
  border-left:6px solid white;
}
.sp2
{
  top:6px;  /* 是自身边框宽度的2倍 */
  left:-3px; /* 是自身边框宽度的-1倍  */
  border-top:0px;
  border-bottom:3px solid white;
  border-right:3px solid black;
  border-left:3px solid black;
}

</style>
</head>

<body>
<div id="top">
<span class="sp1">
<span class="sp2"></span>
</span>
</div>
</body>

</html>
尖角在下面

效果图:

 


代码:


[html] 
<html> 
<head> 
<title>尖角div</title> 
<style type="text/css"> 
#bottom 

  width:400px; 
  height:250px; 
  border:3px solid;   /* 边框宽度为3px */ 
  position:relative; 

.sp1,.sp2 

  display:block; 
  height:0px; 
  width:0px; 
  position:absolute; 
  font-size:0; 
  line-height:0; 

.sp1 

  bottom:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */ 
  left:40px;   /* 它来确定尖角的位置 */ 
  border-bottom:0px; 
  border-top:6px solid black;  /* 注意颜色的变化 */ 
  border-right:6px solid white; 
  border-left:6px solid white; 

.sp2 

  bottom:6px;  /* 是自身边框宽度的2倍 */ 
  left:-3px; /* 是自身边框宽度的-1倍  */ 
  border-bottom:0px; 
  border-top:3px solid white; 
  border-right:3px solid black; 
  border-left:3px solid black; 

 
</style> 
</head> 
 
<body> 
<div id="bottom"> 
<span class="sp1"> 
<span class="sp2"></span> 
</span> 
</div> 
</body> 
 
</html> 

<html>
<head>
<title>尖角div</title>
<style type="text/css">
#bottom
{
  width:400px;
  height:250px;
  border:3px solid;   /* 边框宽度为3px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  bottom:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */
  left:40px;   /* 它来确定尖角的位置 */
  border-bottom:0px;
  border-top:6px solid black;  /* 注意颜色的变化 */
  border-right:6px solid white;
  border-left:6px solid white;
}
.sp2
{
  bottom:6px;  /* 是自身边框宽度的2倍 */
  left:-3px; /* 是自身边框宽度的-1倍  */
  border-bottom:0px;
  border-top:3px solid white;
  border-right:3px solid black;
  border-left:3px solid black;
}

</style>
</head>

<body>
<div id="bottom">
<span class="sp1">
<span class="sp2"></span>
</span>
</div>
</body>

</html>
尖角在左边

效果图:

 \


代码:


[html]
<html> 
<head> 
<title>尖角div</title> 
<style type="text/css"> 
#left 

  width:400px; 
  height:250px; 
  border:3px solid;   /* 边框宽度为3px */ 
  position:relative; 

.sp1,.sp2 

  display:block; 
  height:0px; 
  width:0px; 
  position:absolute; 
  font-size:0; 
  line-height:0; 

.sp1 

  left:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */ 
  top:40px;   /* 它来确定尖角的位置 */ 
  border-left:0px; 
  border-top:6px solid white;  /* 注意颜色的变化 */ 
  border-right:6px solid black; 
  border-bottom:6px solid white; 

.sp2 

  left:6px;  /* 是自身边框宽度的2倍 */ 
  top:-3px; /* 是自身边框宽度的-1倍  */ 
  border-left:0px; 
  border-top:3px solid black; 
  border-right:3px solid white; 
  border-bottom:3px solid black; 

 
</style> 
</head> 
 
<body> 
<div id="left"> 
<span class="sp1"> 
<span class="sp2"></span> 
</span> 
</div> 
</body> 
 
</html> 

<html>
<head>
<title>尖角div</title>
<style type="text/css">
#left
{
  width:400px;
  height:250px;
  border:3px solid;   /* 边框宽度为3px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  left:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */
  top:40px;   /* 它来确定尖角的位置 */
  border-left:0px;
  border-top:6px solid white;  /* 注意颜色的变化 */
  border-right:6px solid black;
  border-bottom:6px solid white;
}
.sp2
{
  left:6px;  /* 是自身边框宽度的2倍 */
  top:-3px; /* 是自身边框宽度的-1倍  */
  border-left:0px;
  border-top:3px solid black;
  border-right:3px solid white;
  border-bottom:3px solid black;
}

</style>
</head>

<body>
<div id="left">
<span class="sp1">
<span class="sp2"></span>
</span>
</div>
</body>

</html>
尖角在右边

效果图:

 

\
代码:


[html] 
<html> 
<head> 
<title>尖角div</title> 
<style type="text/css"> 
#right 

  width:400px; 
  height:250px; 
  border:3px solid;   /* 边框宽度为3px */ 
  position:relative; 

.sp1,.sp2 

  display:block; 
  height:0px; 
  width:0px; 
  position:absolute; 
  font-size:0; 
  line-height:0; 

.sp1 

  right:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */ 
  top:40px;   /* 它来确定尖角的位置 */ 
  border-right:0px; 
  border-top:6px solid white;  /* 注意颜色的变化 */ 
  border-bottom:6px solid white; 
  border-left:6px solid black; 

.sp2 

  right:6px;  /* 是自身边框宽度的2倍 */ 
  top:-3px; /* 是自身边框宽度的-1倍  */ 
  border-right:0px; 
  border-top:3px solid black; 
  border-bottom:3px solid black; 
  border-left:3px solid white; 

 
</style> 
</head> 
 
<body> 
<div id="right"> 
<span class="sp1"> 
<span class="sp2"></span> 
</span> 
</div> 
</body> 
 
</html> 

<html>
<head>
<title>尖角div</title>
<style type="text/css">
#right
{
  width:400px;
  height:250px;
  border:3px solid;   /* 边框宽度为3px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  right:-9px;    /* 它的绝对值加上span的边框宽度等于div边框宽度的5倍 */
  top:40px;   /* 它来确定尖角的位置 */
  border-right:0px;
  border-top:6px solid white;  /* 注意颜色的变化 */
  border-bottom:6px solid white;
  border-left:6px solid black;
}
.sp2
{
  right:6px;  /* 是自身边框宽度的2倍 */
  top:-3px; /* 是自身边框宽度的-1倍  */
  border-right:0px;
  border-top:3px solid black;
  border-bottom:3px solid black;
  border-left:3px solid white;
}

</style>
</head>

<body>
<div id="right">
<span class="sp1">
<span class="sp2"></span>
</span>
</div>
</body>

</html>


《完》

 


 

    发表评论
    请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
    用户名: 验证码:点击我更换图片
    最新评论 更多>>

    推荐热点

    • WordPress添加百度喜欢按钮小技巧
    • Wordpress 博客如何实现自定义Gravatar头像
    • 网站设计分析:建立良好的视觉层级
    • 网站设计分析:“中国式设计”的三个方向
    • 案例分析:奥巴马筹款网站的制作过程
    • 创建不平衡的平衡:在网页设计中使用不对称设计
    • 7大主流B2C首页导航栏设计对比分析
    • Wordpress页面模板制作方法及使用
    • css控制文字前的小图标
    网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
    Copyright © 2008-2015 计算机技术学习交流网. 版权所有

    豫ICP备11007008号-1