鼠标移入移出,样式修改,显示隐藏提示消息


重要的有三点:

1.a标签中的ishow是自己定义的属性,自己输入值

2.a:hover表示鼠标移上去时,

3.a:hover:after{content:attr(ishow)}表示鼠标移上去后,显示提示消息


<!DOCTYPE html>

<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>实践题 </title>
   <style type="text/css">
.tags {
    position: relative;

}

.tags:hover{

    background:blue;

}

.tags:hover:after {
    background: rgba(0,0,0,.8);
    border-radius: 10px;
    bottom: -34px;
    color: #fff;
    content: attr(ishow);
    left: 10%;
    padding: 5px 15px;
    position: absolute;
    z-index: 98;
    width: 350px;
}
</style>
</head>


<body>


<a class="tags" ishow="Text shown on hovering">Exposed text</a>
</body>


</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值