我正在尝试获取图像中的视图。我正在使用Ext js表单。有什么建议?如果它是单行,那就不会有问题了。但UX需要文本框与此类似。
答案 0 :(得分:0)
这是一种解决方法。
div {
position: relative;
font-family: arial;
font-size: 12px;
}
textarea {
font-family: arial;
font-size: 13px;
padding: 10px;
}
span {
color: #aaa;
position: absolute;
content: "Max 180 characters";
bottom: 10px;
transform: translateX(calc(-100% - 10px));
white-space: nowrap;
}
textarea:focus + span {
display: none;
}

<div>
<textarea placeholder="Please provide additional information" rows="4" cols="50">
</textarea>
<span>Max 180 characters</span>
</div>
&#13;