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

相关文章:

  • 2021-04-11
  • 2022-12-23
  • 2022-01-02
  • 2022-02-26
  • 2022-02-10
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-12-18
  • 2021-12-18
  • 2022-12-23
  • 2021-12-18
  • 2021-12-18
  • 2021-12-04
相关资源
相似解决方案