In particular Input[text] and textarea, and in the lower-right corner of the textarea also have a mouse to drag the table textarea size of the function, as shown in the following figure:
Input[text]:
TextArea
Sometimes the yellow border is very affecting the page effect, and textarea drag to change the size of the direct impact on the layout, so in order not to make these redundant features and effects of the page, you can use a few CSS to remove the default effect of the Chrome browser, the code is as follows:
To remove a yellow border from the focus of a table item:
Copy Code code as follows:
Input,button,select,textarea{outline:none}
To cancel the textarea drag resizing function:
Copy Code code as follows:
Textarea{resize:none}
After merging:
Copy Code code as follows:
input,button,select,textarea{Outline:none;}
textarea{font-size:13px; resize:none;}