亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

css3實現尖角的方法

發布時間:2020-12-11 14:14:49 來源:億速云 閱讀:372 作者:小新 欄目:web開發

這篇文章給大家分享的是有關css3實現尖角的方法的內容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。

css3做尖角的方法:首先創建一個HTML示例文件;然后確定尖角的位置;最后通過給指定div設置屬性為“top:6px;left:-3px;border-top:0px;border-bottom...”來實現尖角效果即可。

尖角在上面

代碼:

<html>
<head>
<title>尖角p</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的邊框寬度等于p邊框寬度的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>
<p id="top">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>

</html>


尖角在下面

代碼:

<html>
<head>
<title>尖角p</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的邊框寬度等于p邊框寬度的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>
<p id="bottom">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>

</html>


尖角在左邊

代碼:

<html>
<head>
<title>尖角p</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的邊框寬度等于p邊框寬度的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>
<p id="left">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>

</html>


尖角在右邊

代碼:

<html>
<head>
<title>尖角p</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的邊框寬度等于p邊框寬度的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>
<p id="right">
<span class="sp1">
<span class="sp2"></span>
</span>
</p>
</body>

</html>

感謝各位的閱讀!關于css3實現尖角的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

元江| 焉耆| 许昌市| 潜江市| 壤塘县| 武山县| 八宿县| 南澳县| 内乡县| 嘉善县| 洛南县| 武威市| 竹溪县| 南涧| 新泰市| 门源| 江山市| 德令哈市| 亳州市| 惠水县| 包头市| 紫阳县| 武乡县| 临安市| 依安县| 孙吴县| 通河县| 金坛市| 隆化县| 高雄市| 丰宁| 白沙| 乌兰县| 都匀市| 来凤县| 集贤县| 新源县| 安乡县| 读书| 南雄市| 沈阳市|