直接上代码👇
第一步:给标签设置自定义属性 我这里设置得data-title (随便设置)
<span class="sub_menu_title" :data-title="demo">{{demo}}</span>
第二步:添加对应样式
[data-title] {
&:hover {
position: relative;
&:after {
content: attr(data-title);
position: absolute;
top: 20px;
left: 10px;
color: #0036bd;
font-size: 12px;
border: 1px solid #ddd;
background-color: #fff;
z-index: 20;
line-height: 1.5;
font-style: normal;
white-space: nowrap;
padding: 0 5px;
}
}
}
效果如图👇


2052

被折叠的 条评论
为什么被折叠?



