如何解决Internet Explorer 11自动换行不起作用
为了确保答案对于将来访问此问题的人们来说是显而易见的:OPwesley在问题下方的评论中亲自回答了该问题:
问题的原因是Internet Explorer 11使textarea
元素继承任何white-space
应用于直接父级的属性。
该决议适用white-space: pre-wrap
于Jean-FrançoisBeauchamp所确定的文本区域。
解决方法
似乎自动换行不再适用于IE 11中的textarea元素。在IE 10和更低版本中,FF,Safari和Chrome的自动换行按预期工作。
IE 11未实现任何自动换行。我尝试将“ wrap = hard”添加到textarea标记中,还尝试添加“ word-
wrap:normal;”。到CSS。
还有其他人遇到过这个问题吗?如果是这样,您是否找到了解决方案。Windows正在推出此更新,并且不一致的行为正成为一个问题。
感谢您的任何帮助,您可以提供。
这是我当前的textarea标签
<textarea class="wrklst-report_text" id="report_text_6586427" name="report_text[6586427]" title="Report Box" data-exam_seq="6586427" style="width:95%;"></textarea>
这是我计算的CSS
-webkit-appearance: textarea;
-webkit-rtl-ordering: logical;
-webkit-user-select: text;
-webkit-writing-mode: horizontal-tb;
background-color: rgb(255,255,255);
border-bottom-color: rgb(0,0);
border-bottom-style: solid;
border-bottom-width: 1px;
border-image-outset: 0px;
border-image-repeat: stretch;
border-image-slice: 100%;
border-image-source: none;
border-image-width: 1;
border-left-color: rgb(0,0);
border-left-style: solid;
border-left-width: 1px;
border-right-color: rgb(0,0);
border-right-style: solid;
border-right-width: 1px;
border-top-color: rgb(0,0);
border-top-style: solid;
border-top-width: 1px;
color: rgb(0,0);
cursor: auto;
display: inline-block;
flex-direction: column;
font-family: Verdana,Arial,sans-serif;
font-size: 16px;
height: 300px;
letter-spacing: normal;
line-height: normal;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 2px;
padding-left: 2px;
padding-right: 2px;
padding-top: 2px;
resize: both;
text-align: start;
text-indent: 0px;
text-shadow: none;
text-transform: none;
white-space: pre-wrap;
width: 950px;
word-spacing: 0px;
word-wrap: break-word;
writing-mode: lr-tb;
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。