Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have ghost text in textfields that disappear when you focus on them using HTML5's placeholder attribute:

<input type="text" name="email" placeholder="Enter email"/>

I want to use that same mechanism to have multiline placeholder text in a textarea, maybe something like this:

<textarea name="story" placeholder="Enter story\n next line\n more"></textarea>

But those \ns show up in the text and don't cause newlines... Is there a way to have a multiline placeholder?

UPDATE: The only way I got this to work was utilizing the jQuery Watermark plugin, which accepts HTML in the placeholder text:

$('.textarea_class').watermark('Enter story<br/> * newline', {fallback: false});
share|improve this question
4  
Great question! – Nayish Aug 25 '11 at 11:11

5 Answers

up vote 17 down vote accepted

The specification does not allow line feed or carriage return characters.

The placeholder attribute represents a short hint (a word or short phrase) intended to aid the user with data entry. A hint could be a sample value or a brief description of the expected format. The attribute, if specified, must have a value that contains no U+000A LINE FEED (LF) or U+000D CARRIAGE RETURN (CR) characters.

Apparently, the recommendation is to use a title attribute for anything longer.

For a longer hint or other advisory text, the title attribute is more appropriate.

share|improve this answer

I find that if you use a lot of spaces, the browser will wrap it properly. Don't worry about using an exact number of spaces, just throw a lot in there, and the browser should properly wrap to the first non space character on the next line.

<textarea name="address" placeholder="1313 Mockingbird Ln         Saginaw, MI 45100"></textarea>
share|improve this answer
2  
Love these hacks! This made me remember the old HTML <UL> indent! – Manishearth Feb 28 '12 at 8:51
Nice hack! Thanks for sharing. – Misha Moroshko Mar 7 '12 at 9:34
2  
This doesn't work for safari. – Andrei Cristian Prodan Dec 13 '12 at 8:44
1  
Yep multiline placeholders are not supported crossbrowser, have found the latest safari does support but is definitely not supported on IOS5 – Tom Jan 23 at 14:57

There is actual a hack which makes it possible to add multiline placeholders in Webkit browsers:


First add the first line of your placeholder to the html5 as usual

<textarea id="text1" placeholder="Line 1" rows="10"></textarea>

then add the rest of the line by css:

#text1::-webkit-input-placeholder::after {
    display:block;
    content:"Line 2\A Line 3";
}

If you want to keep your lines at one place you can try the following. The downside of this is that other browsers than chrome, safari, webkit-etc. don't even show the first line:

<textarea id="text2" placeholder="." rows="10"></textarea>​

then add the rest of the line by css:

#text2::-webkit-input-placeholder{
    color:transparent;
}

#text2::-webkit-input-placeholder::before {
    color:#666;
    content:"Line 1\A Line 2\A Line 3\A";
}

Demo: http://jsfiddle.net/Z3tFG/1/

It would be very great, if s.o. could get a similiar demo working on Firefox.

share|improve this answer
thanks for sharing – charles May 6 at 7:17

The html5 spec expressly rejects new lines in the place holder field. Versions of Webkit /will/ insert new lines when presented with line feeds in the placeholder, however this is incorrect behaviour and should not be relied upon.

I guess paragraphs aren't brief enough for w3 ;)

share|improve this answer
1  
Webkit's behavior is not incorrect since the specification does not say what must happen if CR/LF do exist. – Christian Dec 16 '11 at 11:26

I do not think that is possible with html/css alone. Might be possible using JavaScript or some other kind of hack - extra spaces to push the text to the next line, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.