Home > Article > Web Front-end > How to remove the border of the input box in css
How to remove the border of the input box in css: first open the corresponding HTML code file; then directly add the css style to the input tag as "style="border:0px;"" to remove the border of the input box .
The operating environment of this article: Windows7 system, HTML5&&CSS3 version, Dell G3 computer.
How to remove the border of the text box:
Remove the border of the text box:
<input type="text" name="textfield" style="border:0px;">
Leave only the border:
<input type="text" style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: solid">
[Recommended learning:css video tutorial】
The above is the detailed content of How to remove the border of the input box in css. For more information, please follow other related articles on the PHP Chinese website!