
CSS文本提示框
CSS文本提示框
- 一、样式
- 二、源代码
来源:菜鸟教程css www.runoob/css/css-tooltip.html
一、样式 二、源代码 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>css提示框</title> </head> <style> .tooltip { position: relative; display: inline-block; border-bottom: 1px dotted black; } .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: black; color: #fff; text-align: center; border-radius: 6px; padding: 5px 0; position: absolute; z-index: 1; bottom: 150%; left: 50%; margin-left: -60px; } .tooltip .tooltiptext::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: black transparent transparent transparent; } .tooltip:hover .tooltiptext { visibility: visible; } </style> <body style="text-align:center;"> <h2>顶部提示框/底部箭头</h2> <div class="tooltip">鼠标移动到我这 <span class="tooltiptext">提示文本</span> </div> </body> </html>👁️ 阅读量:0
© 版权声明:本文《CSS文本提示框》内容均为本站精心整理或网友自愿分享,如需转载请注明原文出处:https://www.zastudy.cn/wen/1686974176a412121.html。