Trying to eliminate the top, right, and left borders for text input fields in Bootstrap 3. The selector being used is as follows:
input[type="text"] {
border-top: 0;
border-right: 0;
border-left: 0;
}
However, in Chrome, a faint thin line is still visible.
https://i.stack.imgur.com/DfECy.png
Unsure how to completely remove that lingering ghost line.