css實現尖角div

來源:互聯網
上載者:User
尖角在上面

代碼:


[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>


《完》

  • 相關文章

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.