css<style type="text/css">
.no_border
{/*没有边框*/
border:0
}.bottom_border
{/*下边框*/
border-style:solid;
border-width:0 0 1 0;
}
</style>
</head>
<body onload="txtid.focus()">
<input type="text" id="txtid" class="no_border" value="I'm in Text Field" size=15>
<br>
<input type="text" class="bottom_border" value="I'm in Text Field" size=15>
</body>