CSS 圆角输入框

ff,chrome,safari下面可以用圆角边框来实现,IE下面还是用背景比较好 

Java代码   收藏代码
  1. input {    
  2.                 height:18px;    
  3.         inline-height:18px;  
  4.                 font-size:11px;    
  5.                 width:70px;   
  6.         text-align:center;  
  7.         border:#ccc 1px solid;  
  8.         border-radius: 5px; /* css 3标准 */  
  9.         -moz-border-radius: 5px;  /* mozilla */  
  10.         -webkit-border-radius: 5px;  /* webkit */  
  11.  }    

猜你喜欢

转载自endual.iteye.com/blog/1787631