gpt4 book ai didi

CSS:带有标题的内容之前/之后

转载 作者:技术小花猫 更新时间:2023-10-29 10:20:17 30 4
gpt4 key购买 nike

我可以

div:after {
content: "hello"
}

但我能否为 hello 文本添加标题,以便当我用鼠标悬停它时显示标题?

谢谢

最佳答案

你不需要伪元素:

p {
background:lightblue;
padding:15px;
margin:15px;
}
<p class="hover-me" title="I Show up on Hover">Some Text</p>

但是,如果你需要使用伪元素

p {
background:lightblue;
padding:15px;
margin:15px;
position: relative;
}

p:hover:after {
position: absolute;
content:attr(data-title);
left:0;
top:0;
width:200px;
height:1.25rem;
background-color: blue;
color:white;
}
<p class="hover-me" data-title="I Show up on Hover">Some Text</p>

关于CSS:带有标题的内容之前/之后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22352618/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com