gpt4 book ai didi

html - <textarea> 带水平线

转载 作者:行者123 更新时间:2023-11-28 15:46:59 25 4
gpt4 key购买 nike

有谁知道在 <textarea> 中创建水平线的方法吗?不使用背景图片?

CSS3 就可以了。如有必要,我可以避开 IE 的图像后备。

例子:

enter image description here

最佳答案

您可以使用线性渐变来做到这一点:

.notes {
background-attachment: local;
background-image:
linear-gradient(to right, white 10px, transparent 10px),
linear-gradient(to left, white 10px, transparent 10px),
repeating-linear-gradient(white, white 30px, #ccc 30px, #ccc 31px, white 31px);
line-height: 31px;
padding: 8px 10px;
}
<textarea class="notes"></textarea>

JSFiddle Version

关于html - &lt;textarea&gt; 带水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28665159/

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