gpt4 book ai didi

html - 文本区域最大宽度

转载 作者:技术小花猫 更新时间:2023-10-29 12:00:04 26 4
gpt4 key购买 nike

我遇到了 textarea 最大宽度的问题,我需要它在调整大小时不超过 .table-cell.two 宽度,在这个例子中:

JSfiddle example

HTML:

<div class="wrapper">
<div class="table">
<div class="table-cell one">
<p>small cell</p>
</div>
<div class="table-cell two">
<p>textarea cell</p>
<textarea></textarea>
</div>
</div>

CSS:

textarea {
max-width: 100%;
}

.wrapper {
width: 500px;
}

.table {
display: block;
width: 100%;
}

.table-cell {
display: table-cell;
background: #E2D8C1;
vertical-align: top;
padding: 10px;
}

.table-cell.two {
width: 100%;
background: #DAC082;
}

.table textarea {
max-width: 100%;
width: 100%;
height: 100px
}

请不要建议使用 javascript,需要纯 css 解决方案。

最佳答案

使用:

textarea { 
/* will prevent resizing horizontally */
resize:vertical;
}

关于html - 文本区域最大宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27939344/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com