4

I want to add a line break within my input text placeholder.

<div class="form-group">
    <input type="text" class="form-control ph" id="" placeholder="Qualification Education Background *">
</div>

I tried with

<div class="form-group">
    <input type="text" class="form-control ph" id="" placeholder="Qualification\n</br> Education\n <br>Background *">
</div>

But it doesn't work. Would anyone help me to achieve this?

Adriano
  • 3,788
  • 5
  • 32
  • 53
John
  • 131
  • 1
  • 2
  • 15
  • 1
    Use a `
    – zer00ne Apr 27 '18 at 03:45
  • [You can check on this link on stackoverflow](https://stackoverflow.com/questions/7312623/insert-line-break-inside-placeholder-attribute-of-a-textarea?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa) – new_learner Apr 27 '18 at 03:47
  • @newlearner ,@zer00ne I need to do with input text only – John Apr 27 '18 at 03:55