让textarea完全显示文章并且不滚动、不可拖拽、不可编辑

textarea {
  width: 100%;
  border: none;
  outline: none;
  resize: none;
  overflow: hidden;
  padding-bottom: 100%;
  background-color: inherit;
}

<textarea readonly="readonly"></textarea>

posted @ 2016-09-13 16:52  SKILL·NULL  阅读(2820)  评论(0编辑  收藏  举报