怎么样让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; ">