为了账号安全,请及时绑定邮箱和手机立即绑定

如何更改锚标记内的title属性的样式?

如何更改锚标记内的title属性的样式?

ABOUTYOU 2019-06-10 20:57:31
如何更改锚标记内的title属性的样式?例子:<a href="example.com" title="My site"> Link </a>如何在浏览器中更改“title”属性的表示方式?默认情况下,它只有黄色背景和小字体。我想把它变大,改变背景色。有CSS方式来样式标题属性吗?
查看完整描述

3 回答

?
千巷猫影

TA贡献1829条经验 获得超7个赞

下面是如何做到这一点的一个例子:


a.tip {

    border-bottom: 1px dashed;

    text-decoration: none

}

a.tip:hover {

    cursor: help;

    position: relative

}

a.tip span {

    display: none

}

a.tip:hover span {

    border: #c0c0c0 1px dotted;

    padding: 5px 20px 5px 5px;

    display: block;

    z-index: 100;

    background: url(../images/status-info.png) #f0f0f0 no-repeat 100% 5%;

    left: 0px;

    margin: 10px;

    width: 250px;

    position: absolute;

    top: 10px;

    text-decoration: none

}

<a href="#" class="tip">Link<span>This is the CSS tooltip showing up when you mouse over the link</span></a>


查看完整回答
反对 回复 2019-06-10
  • 3 回答
  • 0 关注
  • 738 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信