div+css代码怎么实现带小三角的tooltips效果

2023-05-24,,

本篇内容介绍了“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>

css的三种引入方式

1.行内样式,最直接最简单的一种,直接对HTML标签使用style=""。

2.内嵌样式,就是将CSS代码写在之间,并且用进行声明。

3.外部样式,其中链接样式是使用频率最高,最实用的样式,只需要在之间加上就可以了。其次就是导入样式,导入样式和链接样式比较相似,采用@import样式导入CSS样式表,不建议使用。

“div+css代码怎么实现带小三角的tooltips效果”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注本站网站,小编将为大家输出更多高质量的实用文章!

《div+css代码怎么实现带小三角的tooltips效果.doc》

下载本文的Word格式文档,以方便收藏与打印。