当前位置: 代码迷 >> ASP.NET >> 如何样让input文本框有细细的黑边,没有凹进去的感觉
  详细解决方案

如何样让input文本框有细细的黑边,没有凹进去的感觉

热度:4043   发布时间:2013-02-26 00:00:00.0
怎么样让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; ">
  相关解决方案