button cursor is not pointer code example
Example: cursor not pointer
#Element {
cursor: pointer; /*When you point on this element, cursor will be
a pointer.*/
}
#Element {
cursor: default; /*Will make the cursor not point.*/
}
#Element {
cursor: pointer; /*When you point on this element, cursor will be
a pointer.*/
}
#Element {
cursor: default; /*Will make the cursor not point.*/
}