css 提示效果

1.重点了解的是display属性中的 inline-block 值,而在w3cschool文档中没有写这个值

 display : inline, 此元素会被你现实为内联元素

 display : inline-block ,讲对象呈递为内联对象,旁边的内联对象会被呈递为同一行内,并允许空格;同时它也可以实现浮动布局

以下为提示文本的一个demo源码,来来至 https://www.runoob.com/try/try.php?filename=trycss_tooltip

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<style>
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}


.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;


    /* 定位 */
    position: absolute;
    z-index: 1;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
}
</style>
<body style="text-align:center;">


<div class="tooltip">鼠标移动到这
  <span class="tooltiptext">提示文本</span>
</div>


</body>
</html>





  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值