How to put background image inside textbox

前端 未结 5 696
后悔当初
后悔当初 2021-01-26 11:21

does anyone know how to put background image inside a textbox? i want to do is when i click the textbox it will change the background with an image.Does anyone know how to do th

5条回答
  •  孤街浪徒
    2021-01-26 11:52

    
    
    
    
    .litebox_input:focus { 
      background-image: url(images/edit.png);
      background-repeat:repeat-y;
      background-position:right;
    }
    

提交回复
热议问题