css div 高度扩展器

发布于 2024-12-07 09:32:14 字数 175 浏览 0 评论 0原文

我试图在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

菩提树下叶撕阳。 2024-12-14 09:32:15

使用 CSS3 resize: Both;,如下所示:http://dhtmlexamples.com/2011/01/20/creating-a-user-ressized-div-tag-using-css3/

<style type="text/css">
    .isResizable {
        background: rgba(255, 0, 0, 0.2);
        font-size: 2em;
        border: 1px solid black;
        overflow: hidden;
        resize: both;
        width: 160px;
        height: 120px;
        min-width: 120px;
        min-height: 90px;
        max-width: 400px;
        max-height: 300px;
    }
</style>

<div class="isResizable">The quick brown fox jumps over the lazy dog.</div>

Use CSS3 resize: both;, as seen here: http://dhtmlexamples.com/2011/01/20/creating-a-user-resizable-div-tag-using-css3/

<style type="text/css">
    .isResizable {
        background: rgba(255, 0, 0, 0.2);
        font-size: 2em;
        border: 1px solid black;
        overflow: hidden;
        resize: both;
        width: 160px;
        height: 120px;
        min-width: 120px;
        min-height: 90px;
        max-width: 400px;
        max-height: 300px;
    }
</style>

<div class="isResizable">The quick brown fox jumps over the lazy dog.</div>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文