Advertisement

手机号已登记

阅读量:

css:

复制代码
  <style>

    
     body {
    
         text-align: center;
    
     }
    
  
    
     input {
    
         width: 150px;
    
         height: 20px;
    
         line-height: 20;
    
         border: 1px solid red;
    
         border-radius: 2px;
    
         margin-right: 5px;
    
     }
    
     input:focus{
    
         border: 1px solid skyblue;
    
     }
    
     span{
    
         font-size: 12px;
    
         font-weight: bold;
    
     }
    
     </style>
    
    
    
    

html:

复制代码
     <input type="text"></input><span></span>
    

全部评论 (0)

还没有任何评论哟~