How to create a label inside an <input> element?

后端 未结 13 574
悲哀的现实
悲哀的现实 2021-01-29 22:54

I would like to insert a descriptive text inside an input element that disappers when the user click on it.

I know it is a very common trick, but I do not know how to do

13条回答
  •  礼貌的吻别
    2021-01-29 23:47

    When you start typing it will disappear.If empty it will appear again.

            <%= f.text_field :user_email,:value=>"",:placeholder => "Eg:abc@gmail.com"%>
    

    Simplest way...

提交回复
热议问题