您好,登錄后才能下訂單哦!
本篇內容介紹了“div+css代碼怎么實現帶小三角的tooltips效果”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
代碼如下:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <style type="text/css"> .tooltips { position: relative; width: 300px; height: 80px; line-height: 60px; background: #D7E7FC; border-radius: 4px; } .arrow { position: absolute; color: #D7E7FC; width: 0px; height: 0px; line-height: 0px; border-width: 20px 15px 0; border-style: solid dashed dashed dashed; border-left-color: transparent; border-right-color: transparent; bottom: -20px; right: 50%; } .tooltips { position: relative; width: 300px; height: 80px; line-height: 60px; background: #D7E7FC; border: 1px solid #A5C4EC; border-radius: 4px; } .arrow { position: absolute; width: 0px; height: 0px; line-height: 0px; border-width: 20px 15px 0; border-style: solid dashed dashed dashed; border-left-color: transparent; border-right-color: transparent; } .arrow-border { color: #A5C4EC; bottom: -20px; right: 50%; } .arrow-bg { color: #D7E7FC; bottom: -19px; right: 50%; } </style> </head> <body> <!--先定義一個相對定位的盒子div:--> <div class="tooltips"> <!--給div盒子添加一個三角型圖標--> <div class="arrow "></div> <!--給“小三角穿上松緊帶”需要使用兩個三角形疊加的方式--> <!--首先我們定義兩個三角形的div,一個背景色和盒子的邊框顏色相同,一個背景色和盒子的背景色一致:--> <div class="arrow arrow-border"></div> <div class="arrow arrow-bg"></div> <!--注意:.arrow-bg和.arrow-border的bottom位置相差為1px(可根據邊框寬度調整)兩個div的順序不可顛倒。--> </div> </body> </html>
1.行內樣式,最直接最簡單的一種,直接對HTML標簽使用style=""。
2.內嵌樣式,就是將CSS代碼寫在之間,并且用進行聲明。
3.外部樣式,其中鏈接樣式是使用頻率最高,最實用的樣式,只需要在之間加上就可以了。其次就是導入樣式,導入樣式和鏈接樣式比較相似,采用@import樣式導入CSS樣式表,不建議使用。
“div+css代碼怎么實現帶小三角的tooltips效果”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。