css 实现div不可点击样式cursor: not-allowed

1、对于css 实现div不可点击状态,红圈圈形状不可点击样式

在这里插入图片描述

cursor: not-allowed;

2、不可点击状态,但是显示箭头样式

在这里插入图片描述

cursor: not-allowed;
pointer-events: none;

猜你喜欢

转载自blog.csdn.net/Taurus_0811/article/details/92806739