css实现input 输入框背景透明源码
程序员文章站
2022-07-07 21:39:13
...
为了让带背景颜色的表单页面更美观,有时候需要把input 输入框设置成透明的背景,实现这种效果,需要在input 添加输入框属性:"background-color:transparent"
<input style="background-color:transparent" type="text" name="name"> (有边框)
<input style="background-color:transparent; border-width:1;"> (细边框)
<input style="background-color: transparent; border: 0px"> (无边框)
本篇文章来源于 我爱编程网 :http://www.bcw52.com/Article/2014.html
上一篇: 控制网页背景、边框的透明度及全透明