当mousedown和鼠标从外向内移动时,光标变为文字,如何保持光标是十字准线?
我尝试使用:active
但不能正常工作..
https://jsfiddle.net/xu9tmmfr/
div,
img {
cursor: crosshair;
}
.a {
width: 300px;
height: 300px;
background-color: red;
}
.a {
width: 200px;
height: 200px;
background-color: green;
}
.c {
width: 100px;
height: 100px;
background-color: pink;
}

<div class="a">
<div class="b">
<img class="c" src="" alt="">
</div>
</div>
&#13;