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

来源:互联网 发布:管家婆软件如何过账 编辑:程序博客网 时间:2024/05/06 13:45

去掉:

<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">