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

时间:2023-08-13 16:07:20

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