I want to use a specific cursor png for just a portion of a canvas. Currently, I have code that applies the cursor to the entire canvas like so:
.myClass {
cursor: url('../img/myCursor.png') 7 33, auto; /* img hotspot centred*/
}
However, I am interested in applying it only to the left half of the canvas (or let's say the first 300px on the x-axis). Is there a way to achieve this?