How to move placeholder to top on focus AND while typing?

前端 未结 7 1231
野的像风
野的像风 2020-11-29 17:38

I want the placeholder to move to the top when the textbox is on focus and also while the user is typing.

I\'m not sure if this is just html/css or any javascript to

7条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-29 17:52

    span{
      display:block;
      }
    input:focus::-webkit-input-placeholder { color:transparent; }
    input:focus:-moz-placeholder { color:transparent; } /* FF 4-18 */
    input:focus::-moz-placeholder { color:transparent; } /* FF 19+ */
    input:focus:-ms-input-placeholder { color:transparent; } /* IE 10+ */
    
    
    

提交回复
热议问题