Report Bug
Qus : Which is not a value of the cursor property?
Qus इनमें से कौन-सा कर्सर प्रॉपर्टी का मान (value) नहीं है?

A. f-resize
B. move
C. ne-resize
D. se-resize


Solution
A. f-resize



Explanation
The CSS cursor property specifies the type of mouse cursor to display when the pointer is over an element. Valid cursor values include: <br>&nbsp;✅ move – Indicates that the item can be moved. <br>✅ ne-resize – Indicates northeast resize.<br>✅ se-resize – Indicates southeast resize. <br>&nbsp;However: <br>&nbsp;f-resize is not a valid CSS cursor value.



Report Bug