html之给文本框设置宽度和高度/input的无边框效果

<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>

上一篇:input文本框设置和移除默认值


下一篇:HTML input文本框设置和移除默认值