Textfield with only bottom border
css, html
Solution
Probably a duplicate of this post: A customized input text box in html/html5
input {
border: 0;
outline: 0;
background: transparent;
border-bottom: 1px solid black;
}
<input></input>
Problem
How can I create a Text field that has a transparent or no background, no top,left and right border? I am only using CSS and HTML.