Make text unselectable | Css

 input {
      pointer-events:none;
} 

AI Explanation

This CSS code targets all elements in the HTML document and applies the property `pointer-events:none;`. This property is used to specify whether or not an element can be the target of mouse events. In this case, setting `pointer-events:none;` on elements means that they will not respond to any mouse events, such as clicks or hover effects. This can be useful when you want to disable user interaction with certain input fields on a webpage.