css div 高度扩展器
我试图在 div 上放置一个文本区域扩展器,但找不到要设置的正确元素,这里解释我正在尝试执行的操作:
在底角的文本区域输入标签中,有一个供用户使用的扩展器设置他想要的文本区域的大小
我的问题是,有没有办法将类似的东西放在 div 上?我不寻找 javascript 代码,css 或 html 就很好了。
i'm trying to put an textarea expander on a div and i can't find the right element to set , here explanation of what i'm trying to do :
in the textarea input tags in the bottom corner there is expander for the user to set the size he wants hes textarea to be
my question is , is there a way to put something like that on a div? i don't looking for javascript code , css or html would be great.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 CSS3
resize: Both;
,如下所示:http://dhtmlexamples.com/2011/01/20/creating-a-user-ressized-div-tag-using-css3/Use CSS3
resize: both;
, as seen here: http://dhtmlexamples.com/2011/01/20/creating-a-user-resizable-div-tag-using-css3/