I've got a DIV which has contentEditable=true so the user can edit it. The problem is that it doesn't look like a text field, so it may not be clear to the user that it can be edited.

Is there a way that I can style the DIV so that it appears to the user like a text input field?

link|improve this question

background: white; border: 1px solid #666; cursor: text; ? :P see my demo – mkk Jan 21 at 20:49
I suppose make it look like a textarea? jsfiddle.net/vwPgT – Jared Farrish Jan 21 at 20:51
Maybe an inset border? – j08691 Jan 21 at 20:52
1  
@mkk - Might help a little if you added some sample text: jsfiddle.net/ZevvE/1 – Jared Farrish Jan 21 at 21:02
@Jared :) good job! ;-) now it is much harder to confuse it with div.. oh it is a div, i forgot :) – mkk Jan 21 at 21:04
show 1 more comment
feedback

4 Answers

up vote 0 down vote accepted

These look the same as their real counterparts in Safari, Chrome, and Firefox. They degrade gracefully and look OK in Opera and IE9, too.

Demo: http://jsfiddle.net/ThinkingStiff/AbKTQ/

CSS:

textarea {
    height: 28px;
    width: 400px;
}

#textarea {
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    border: 1px solid gray;
    font: medium -moz-fixed;
    font: -webkit-small-control;
    height: 28px;
    overflow: auto;
    padding: 2px;
    resize: both;
    width: 400px;
}

input {
    margin-top: 5px;
    width: 400px;
}

#input {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    background-color: white;
    background-color: -moz-field;
    border: 1px solid darkgray;
    box-shadow: 1px 1px 1px 0 lightgray inset;  
    font: -moz-field;
    font: -webkit-small-control;
    margin-top: 5px;
    padding: 2px 3px;
    width: 398px;    
}

HTML:

<textarea>I am a textarea</textarea>
<div id="textarea" contenteditable>I look like textarea</div>

<input value="I am an input" />
<div id="input" contenteditable>I look like an input</div>

Output:

enter image description here

link|improve this answer
feedback

In WebKit, you can do: -webkit-appearance: textarea;

link|improve this answer
2  
Well, that's just too convenient. – Jared Farrish Jan 21 at 20:59
feedback

You could go for an inner box shadow:

div[contenteditable=true] {
  box-shadow: inset 0px 1px 4px #666;
}

I updated the jsfiddle from Jarish: http://jsfiddle.net/ZevvE/2/

link|improve this answer
feedback

You can place a TEXTAREA of similar size under your DIV, so the standard control's frame would be visible around div.

It's probably good to set it to be disabled, to prevent accidental focus stealing.

link|improve this answer
Yeah, not sure this is what the OP is looking for in the answer. – Jared Farrish Jan 21 at 20:54
lol :) nice joke :) – mkk Jan 21 at 20:55
If you want the textfield to scale automatically with the contents of the div this is getting hard. – timing Jan 21 at 22:54
feedback

Your Answer

 
or
required, but never shown

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