加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
test.html 643 Bytes
一键复制 编辑 原始数据 按行查看 历史
lizeman 提交于 2023-09-07 17:10 . 提交项目1
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<style type="text/css">
div {
width: 100px;
height: 100px;
background-color: pink;
text-align: center;
line-height: 100px;
margin: 100px auto;
position: relative;
}
div img {
position: absolute;
left: 0;
top: 100px;
display: none;
}
.box:hover img {
display: block;
}
</style>
</head>
<body>
<div class="box">
可以是二维码
<img src="../project/src/assets/images/custom.png" />
</div>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化