真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

css3實(shí)現(xiàn)尖角的方法

這篇文章給大家分享的是有關(guān)css3實(shí)現(xiàn)尖角的方法的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧。

企業(yè)建站必須是能夠以充分展現(xiàn)企業(yè)形象為主要目的,是企業(yè)文化與產(chǎn)品對(duì)外擴(kuò)展宣傳的重要窗口,一個(gè)合格的網(wǎng)站不僅僅能為公司帶來(lái)巨大的互聯(lián)網(wǎng)上的收集和信息發(fā)布平臺(tái),創(chuàng)新互聯(lián)面向各種領(lǐng)域:酒樓設(shè)計(jì)成都網(wǎng)站設(shè)計(jì)、營(yíng)銷(xiāo)型網(wǎng)站建設(shè)解決方案、網(wǎng)站設(shè)計(jì)等建站排名服務(wù)。


css3做尖角的方法:首先創(chuàng)建一個(gè)HTML示例文件;然后確定尖角的位置;最后通過(guò)給指定div設(shè)置屬性為“top:6px;left:-3px;border-top:0px;border-bottom...”來(lái)實(shí)現(xiàn)尖角效果即可。

尖角在上面

代碼:



尖角p

#top
{
  width:400px;
  height:250px;
  border:3px solid;   /* 邊框?qū)挾葹?px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  top:-9px;    /* 它的絕對(duì)值加上span的邊框?qū)挾鹊扔趐邊框?qū)挾鹊?倍 */
  left:40px;   /* 它來(lái)確定尖角的位置 */
  border-top:0px;
  border-bottom:6px solid black;  /* 注意顏色的變化 */
  border-right:6px solid white;
  border-left:6px solid white;
}
.sp2
{
  top:6px;  /* 是自身邊框?qū)挾鹊?倍 */
  left:-3px; /* 是自身邊框?qū)挾鹊?1倍  */
  border-top:0px;
  border-bottom:3px solid white;
  border-right:3px solid black;
  border-left:3px solid black;
}










尖角在下面

代碼:



尖角p

#bottom
{
  width:400px;
  height:250px;
  border:3px solid;   /* 邊框?qū)挾葹?px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  bottom:-9px;    /* 它的絕對(duì)值加上span的邊框?qū)挾鹊扔趐邊框?qū)挾鹊?倍 */
  left:40px;   /* 它來(lái)確定尖角的位置 */
  border-bottom:0px;
  border-top:6px solid black;  /* 注意顏色的變化 */
  border-right:6px solid white;
  border-left:6px solid white;
}
.sp2
{
  bottom:6px;  /* 是自身邊框?qū)挾鹊?倍 */
  left:-3px; /* 是自身邊框?qū)挾鹊?1倍  */
  border-bottom:0px;
  border-top:3px solid white;
  border-right:3px solid black;
  border-left:3px solid black;
}










尖角在左邊

代碼:



尖角p

#left
{
  width:400px;
  height:250px;
  border:3px solid;   /* 邊框?qū)挾葹?px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  left:-9px;    /* 它的絕對(duì)值加上span的邊框?qū)挾鹊扔趐邊框?qū)挾鹊?倍 */
  top:40px;   /* 它來(lái)確定尖角的位置 */
  border-left:0px;
  border-top:6px solid white;  /* 注意顏色的變化 */
  border-right:6px solid black;
  border-bottom:6px solid white;
}
.sp2
{
  left:6px;  /* 是自身邊框?qū)挾鹊?倍 */
  top:-3px; /* 是自身邊框?qū)挾鹊?1倍  */
  border-left:0px;
  border-top:3px solid black;
  border-right:3px solid white;
  border-bottom:3px solid black;
}










尖角在右邊

代碼:



尖角p

#right
{
  width:400px;
  height:250px;
  border:3px solid;   /* 邊框?qū)挾葹?px */
  position:relative;
}
.sp1,.sp2
{
  display:block;
  height:0px;
  width:0px;
  position:absolute;
  font-size:0;
  line-height:0;
}
.sp1
{
  right:-9px;    /* 它的絕對(duì)值加上span的邊框?qū)挾鹊扔趐邊框?qū)挾鹊?倍 */
  top:40px;   /* 它來(lái)確定尖角的位置 */
  border-right:0px;
  border-top:6px solid white;  /* 注意顏色的變化 */
  border-bottom:6px solid white;
  border-left:6px solid black;
}
.sp2
{
  right:6px;  /* 是自身邊框?qū)挾鹊?倍 */
  top:-3px; /* 是自身邊框?qū)挾鹊?1倍  */
  border-right:0px;
  border-top:3px solid black;
  border-bottom:3px solid black;
  border-left:3px solid white;
}









感謝各位的閱讀!關(guān)于css3實(shí)現(xiàn)尖角的方法就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


新聞標(biāo)題:css3實(shí)現(xiàn)尖角的方法
網(wǎng)站網(wǎng)址:http://weahome.cn/article/ijgheg.html

其他資訊

在線(xiàn)咨詢(xún)

微信咨詢(xún)

電話(huà)咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部