gpt4 book ai didi

html - 用半边框设计文本区域

转载 作者:太空宇宙 更新时间:2023-11-04 14:19:33 24 4
gpt4 key购买 nike

我怎样才能使文本区域具有半边框并且看起来就像下图中的那样?所有这一切都只用了 css。

enter image description here

在我的 html 中看起来像:

    <div class"textareaKeeper">
<textarea class="forDesc">Small Description</textarea>
</div>

最佳答案

尝试向上移动文本区域并调整边距和填充。

参见 DEMO (已修复浏览器不一致问题)。

textarea {
width: 198px;
height: 20px;
line-height: 20px;
top: -12px;
border: none;
resize: none;
margin-left: 2px;
position: relative;
padding: 0 2px;
}
div {
border-left: 2px solid red;
border-right: 2px solid red;
border-bottom: 2px solid red;
height: 10px;
width: 204px;
margin-top: 20px;
}

关于html - 用半边框设计文本区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15608695/

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