我注意到Medium编辑器的Textarea没有滚动条,当文本输入时会展开,也会扩展整个网页而不是固定高度。
演示:
在输入之前:
输入后:
请注意,文本区域扩展了整个浏览器网页,而不是仅扩展textarea。
如何在CSS中完成此操作?
这就是我现在所拥有的:
.postbox-desc-input{
border:none;
outline: none;
font-size: 18px;
font-weight: 600px;
width: 100%;
height: 100%;
}
编辑:HTML代码
<div id="pb-expan-postbox">
<textarea id="pb-descbox" placeholder="Type your Text here" class="postbox-desc-input"></textarea>
</div>