HTML Textarea - cursor starting in center of textarea rather than top

余生颓废 提交于 2019-12-07 04:13:58

问题


I have an HTML template and CSS that renders a textarea field, however when clicking in the field, the cursor starts from half way down the text area, not from the top left as I would expect.

This does not occur in IE, but does in Chrome and FF. I also get a list of previous values entered listed below, suggesting that the textbox styles are being applied.

Can anyone advise on which CSS proprties I should be looking to modify?

Here is the HTML:

<input id="description" class="textarea" type="textarea" name="description" cols="70" rows="50">

Here are the properties being assigned to the text area:

.standardForm .textarea {
    bottom: 0;
    height: 90px;
    left: 0;
    margin-bottom: 0.5em;
    right: 0;
}
custom.css (line 255)
.standardForm .textbox, .standardForm .textarea, .standardForm .submit, .standardForm .select {
    background: none repeat scroll 0 0 White;
    border: 1px dotted #AAAAAA;
}
custom.css (line 251)
.standardForm .textbox, .standardForm .textarea, .standardForm .select {
    font-size: 12px;
    overflow: hidden;
    padding: 7px;
    resize: none;
    width: 90%;
}
custom.css (line 250)
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, input, button, textarea {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    font-size: 100%;
    font-weight: normal;
    margin: 0;
    outline: 0 none;
    padding: 0;
    text-decoration: none;
    vertical-align: baseline;
}

回答1:


I think using

<textarea id="description" class="textarea" name="description" cols="70" rows="50"></textarea>

should solve your problem.




回答2:


Providing space between the textarea tags usually results in such undesirable white spaces.Try the code with no spaces that would do the trick. <textarea></textarea>




回答3:


Your syntax is not correct. You may not include a type attribute with a value of textarea, instead as "roy" suggested you have to use <textarea></textarea> tag



来源:https://stackoverflow.com/questions/7050460/html-textarea-cursor-starting-in-center-of-textarea-rather-than-top

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!