css - What's the proper HTML use for a signature line? -


while making form in html converted pdf, realized there no solid line designed signatures.

and far recall, don't know of html tag supports it. closest hr cannot moved @ bottom via css. other alternative using td bottom-border solid 1px black doesn't convey semantics of whatsoever.

if use underscores, see tiny space gaps between underscores.

any suggestions?

why not use input? way, correct semantics. example, screen readers understand user expected submit information.

.signature {      border: 0;      border-bottom: 1px solid #000;  }
<input type="text" class="signature" />


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -