溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

純CSS怎么實(shí)現(xiàn)頁(yè)面的尖角、小三角、不同方向尖角

發(fā)布時(shí)間:2021-03-19 14:26:31 來(lái)源:億速云 閱讀:277 作者:小新 欄目:web開(kāi)發(fā)

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

效果圖:

方法一的效果圖:

純CSS怎么實(shí)現(xiàn)頁(yè)面的尖角、小三角、不同方向尖角

方法二的效果圖:

純CSS怎么實(shí)現(xiàn)頁(yè)面的尖角、小三角、不同方向尖角

方法三的效果圖:

純CSS怎么實(shí)現(xiàn)頁(yè)面的尖角、小三角、不同方向尖角

方法1:因?yàn)橛斜尘?,所有?shí)現(xiàn)起來(lái)比較方便,尖角的內(nèi)部同個(gè)顏色就可以不用考慮遮擋問(wèn)題

html:

<div id="first">  
<p>帶背景顏色的小三角實(shí)現(xiàn)是比較簡(jiǎn)單的!</p>  
  <span id="top"></span>  
</div>

css

#top {  
  
    position: absolute;  
    width: 0px;  
    height: 0px;  
    line-height: 0px;/*為了防止ie下出現(xiàn)題型*/  
    border-bottom: 10px solid #89b007;  
    border-left: 10px solid #fff;  
    border-right: 10px solid #fff;  
    left: 76px;  
    top: -10px;  
}  
#first {  
    border-radius:8px;  
    -moz-border-radius:8px;-ms-border-radius:8px;-o-border-radius:8px;-webkit-border-radius:8px;  
    position: absolute;  
    height: 150px;  
    width: 300px;  
    background: #89b007;  
    left: 22px;  
    top: 33px;  
}  
#first p{ padding:10px; line-height:1.5; color:#FFF;}

方法2:

html

<div class="w">  
  <div class="x">  
    <p><a href="#">用面向?qū)ο蟮乃枷肴?shū)寫(xiě)css,用面向?qū)ο蟮男膽B(tài)去書(shū)寫(xiě)css。</a></p>  
    <span class="z">◆</span> <span class="y">◆</span> </div>  
</div>

css

* {  
margin: 0;  
padding: 0;  
}  
a{ color:#666; text-decoration:none; line-height:25px; text-indent:24px;}  
.w{ width:200px; position:absolute; background:#999; left:400px; top:200px; font-size:12px; text-align:left}/*模擬灰色陰影背景層*/  
.x{ width:180px; position:relative; background:#fff;  border:1px solid #ccc; padding:10px; left:-4px; top:-4px;}/*內(nèi)容div*/  
.y , .z{  
position: absolute;  
left: 141px;  
}  
.y{  
color: #ccc;  
font-size: 19px;  
top:-12px;  
z-index:1;  
}/*模擬小三角*/  
.z{  
color: #fff;  
font-size: 19px;  
top:-11px;  z-index:3;  
}/*模擬小三角*/

方法3:

<div id="content"> <span class="out"></span><span class="iner"></span> <span class="right"></span>  
  <p>不管寫(xiě)什么內(nèi)容,總之就是要實(shí)現(xiàn)無(wú)圖小三角,要是有背景顏色那倒是極好的,沒(méi)有的話(huà)也可以,就是稍微麻煩一點(diǎn)</p>  
</div>
#content {  
text-indent: 2em;  
box-shadow: 0px 0px 10px #999;  
padding: 10px;  
font-size: 12px;  
line-height: 1.5;  
border-radius: 5px;  
height: 100px;  
width: 250px;  
position: relative;  
margin: 200px auto;  
border: 1px solid #CCC;  
}  
span {  
position: absolute;  
left: 25px;  
height: 0px;  
width: 0px;  
}  
/*上部小三角實(shí)現(xiàn)樣式開(kāi)始*/  
span.out {  
line-height: 0;  
border-width: 10px;  
border-color: transparent transparent #CCC transparent;  
border-style: dashed dashed solid dashed;  
top: -20px;  
}  
span.iner {  
border-width: 10px;  
border-color: #fff transparent #FFF transparent;  
border-style: dashed dashed solid dashed;  
top: -19px;  
line-height: 0;  
}  
/*右部小三角實(shí)現(xiàn)樣式開(kāi)始*/  
span.right {  
background: #FFF;  
border-width: 1px;  
width: 16px;  
height: 16px;  
border-color: #CCC #CCC transparent transparent;  
border-style: solid solid dashed dashed;  
left: 270px;  
top: 30px;  
border-radius: 0 0 100% 0;/*這里radius的值不要選取絕對(duì)值因?yàn)樵诜糯蠡蛘呖s小的過(guò)程中會(huì)產(chǎn)生封不住口的現(xiàn)象*/  
line-height: 0;  
box-shadow: 5px 0 10px #aaa;  
}

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

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI