I have a div that the user can edit problem is when I select the div the initial cursor is always the same height as the div??? Also if i enter no text and click on it i have to leave the div and click before I can enter the div again????
HTML
<div id="editabletxt" name="editabletxt" contenteditable="true"></div>
CSS
#editabletxt{
width:560px;
height:100px;
line-height:20px;
display:block;
overflow:auto;
outline: 0px solid transparent;
word-wrap: break-word;
text-align:left;
font-size:80%;
font-weight:normal;
background:#fff;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 1px solid #dbe1e6;
padding:4px 4px 4px 4px;
}