<!-- 圆形按钮 --> <div id="locateBtn" style="position: absolute; top: 62px; right: 22px; width: 37.5px; height: 37.5px; background: rgb(133, 136, 136); border-radius: 50%; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); cursor: pointer; z-index: 999;" title="定位到当前位置"> <div style="position: absolute; top: 13.75px; left: 13.75px; width: 10px; height: 10px; border-radius: 50%; background: #fff;"></div> </div>请修改为 圆点下方提示“定位到当前位置”
时间: 2024-03-21 08:40:32 浏览: 44
position:relative/absolute无法冲破的等级
请修改如下代码:
```
<div id="locateBtn" style="position: absolute; top: 62px; right: 22px; width: 37.5px; height: 37.5px; background: rgb(133, 136, 136); border-radius: 50%; box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); cursor: pointer; z-index: 999;" title="定位到当前位置">
<div style="position: absolute; top: 51.25px; left: 0; right: 0; text-align: center; font-size: 12px; color: #fff;">定位到当前位置</div>
<div style="position: absolute; top: 13.75px; left: 13.75px; width: 10px; height: 10px; border-radius: 50%; background: #fff;"></div>
</div>
```
将圆形按钮改为圆点下方提示“定位到当前位置”。同时,将提示文字设置在圆点下方,并居中显示。
阅读全文