HTML中的a标签用鼠标移上去是变小手样式的,那么其它标签css鼠标变成小手怎么设置?在css里写个cursor:pointer即可鼠标变成小手。1、css鼠标变成小手实例代码如下:<!DOCTY
HTML中的a标签用鼠标移上去是变小手样式的,那么其它标签css鼠标变成小手怎么设置?在css里写个cursor:pointer即可鼠标变成小手。
1、css鼠标变成小手实例代码如下:
<!DOCTYPE html><html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>css鼠标变成小手设置</title> <style type="text/css"> .box { width: 200px; height: 200px; border: 1px solid red; cursor: pointer; } </style> </head> <body> <div class="box">鼠标移上去变小手哦</div> </body></html>
2、鼠标变成小手效果图如下:
本站部分文章来自网络或用户投稿,如无特殊说明或标注,均为本站原创发布。涉及资源下载的,本站旨在共享仅供大家学习与参考,如您想商用请获取官网版权,如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。