Text Box like a underline

asp.net, css, textbox

Solution

Apply a solid `border-bottom`:

<asp:TextBox id="txt" runat="server" CssClass="underlined" />

CSS:

input.underlined
{
   border:0;
   border-bottom:solid 1px #000;
   outline:none; /* prevents textbox highlight in chrome */
}

-- SEE WORKING DEMO --

Problem

Is there any way to make a textbox in asp.net control appear like a underline only, just like in paper documents where blanks are placed for text input?

Original source