How to disable text area re size icon for chrome or webkit browsers.
Recently when i was implementing new application , i was asked to remove the text area resize feature and text area glow when user focuses on the text area. Thank god it doesn’t took much effort. it can be done with simple CSS tweaks.
i placed the following CSS code in my page and it solved
.exampletextarea { resize:none; outline:none; }
Popularity: 1% [?]