您好,登錄后才能下訂單哦!
小編給大家分享一下HTML+CSS如何實現好看的三角形提示框樣式,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
想要用CSS實現三角形提示框樣式需要用到很多CSS中的屬性,比如:display屬性,border-radius圓角,position定位等等,如有不清楚的小伙伴可以看看我以前的文章,之前都有介紹過,或者訪問 CSS視頻教程 。
實例描述:給一個div,用border-radius,before,border-top等屬性,在提示框的左上角和右下角加三角形,制作一個三角形提示框,具體代碼如下:
HTML部分:
<div class="main"> <p>這是內容這是內容這是內容這是內容這是內容這是內容</p> </div>
CSS部分:
*{ margin: 0; padding: 0; } .main{ width: 120px; display: inline-block; font-size: 14px; color: #333; line-height: 28px; background: #F0981C; position: relative; padding: 10px; -webkit-border-radius:5px; -moz-border-radius:5px; : 5px; } /*左三角*/ .main:before{ content: ' '; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-right: 12px solid #F0981C; position: absolute; top: 15px; left: -12px; } /*右三角*/ .main:after{ content: ' '; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 12px solid #F0981C; position: absolute; bottom: 15px; right: -12px; }
效果圖:
看完了這篇文章,相信你對HTML+CSS如何實現好看的三角形提示框樣式有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。