我怎么能失去这个顶级边界?我以为它可能是影子属性但是……没有.
这是标记
<div class="form-group"> <input class="form-control transparent-input" type='text' name='name' placeholder="Field title..." required> </div>
bootstrap v3.1.1
编辑:
以下解决方案均无效.看这Fiddle
<style> input.transparent-input{ background-color:rgba(0,0) !important; border:none !important; } </style>
最后一个值0将使背景透明
或者只是将背景颜色设置为透明.
<style> input.transparent-input{ background-color:transparent !important; border:none !important; } </style>
添加!important以覆盖现有样式