HOME BLOG PORTFOLIO PHOTO CONTACT
dotted input type text css like application form

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

 <head>

<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

<title>Dotted text box</title>

<style type="text/css">

.txtbox {

    font-family: Verdana, Arial, Helvetica, sans-serif;

    font-size: 11px;

    color: #000000;

    border-bottom-width: 1px;

    border-bottom-style: dashed;

    border-bottom-color: #999999;

    border-top-style: none;

    border-right-style: none;

    border-left-style: none;

    }

</style>

</head>

<body>

<table width="600" border="0" cellspacing="0" cellpadding="0">

  <tr>

    <td><input type="text" class="txtbox" /></td>

  </tr>

</table>

</body>

</html>

   Share on Facebook

Page views:892