//h5新属性,让元素可以编写
<div
contenteditable=
"true"
>
.....此处省略.....
</div>
给div设置css
主要属性有
div{
width: 100px;
min-height: 100px;
max-height: 300px;
padding: 3px;
border: 1px solid #a0b3d6;
font-size: 12px;
word-wrap: break-word;
overflow-y: auto;
}