<input name="" type="text" style="width:200px; height:20px;" />
html如何设置input的无边框效果
CSS可以控制的
<style type="text/css">
input {border:1px solid #c00;}
input {star : expression(
onmouseover=function(){this.style.borderColor="#060"},
onmouseout=function(){this.style.borderColor="#c00"})}
</style>