Currently, I have a div that has a width of 160px and a height of 80px. Strangely enough, the div also has a margin-left of 540px. Additionally, in my CSS, I've specified cursor:pointer.
The issue arises when I move my cursor to the left of the div, where the margin area is located, causing the mouse pointer to change to pointer.
How can I prevent the cursor from changing when moving over the margin area but allow it to change only when hovering over the div itself?
I must stick with using margin as positioning will lead to structural issues.