日期:2014-05-19  浏览次数:20452 次

怎么样让input文本框有细细的黑边,没有凹进去的感觉?
<input   type= "text "   SIZE= "20 "   name= "username "   style= "width:150px;height:21px ">

上面是我的文本框,现在显示的是常用的样式,现在我想改变一下,怎么改呢?

------解决方案--------------------
style= "border:solid 1px black "
------解决方案--------------------
<input type= "text " SIZE= "20 " name= "username " style= "width:150px;height:21px;border:solid 1px black ">
------解决方案--------------------
用css样式,去google一下就有了
------解决方案--------------------
<input type= "text " SIZE= "20 " name= "username " style= "width:150px;height:21px;border:1px solid #000000; ">