html中去掉文本框(input type="text")的边框或只显示下边框

去掉:

<input   type="text"   name="textfield"   style="border:0px;">
只留下边框:

<input type="text" style="BORDER-TOP-STYLE: none; BORDER-RIGHT-STYLE: none; BORDER-LEFT-STYLE: none; BORDER-BOTTOM-STYLE: solid">

原文地址:https://www.cnblogs.com/suxiaBlogs/p/7266255.html