gpt4 book ai didi

HTML 和 CSS 拆分输入表单 - 一个字符一个字符地拆分

转载 作者:行者123 更新时间:2023-12-04 02:58:49 25 4
gpt4 key购买 nike

我尝试将输入字段拆分成这样:

enter image description here

但是我被卡住了,没有找到任何可以帮助我的东西。我找到了类似的东西,但不是我想要的:

input[type="text"] {
border: none;
width: 400px;
background: repeating-linear-gradient(90deg, dimgrey 0, dimgrey 1ch, transparent 0, transparent 1.5ch) 0 100%/52% 2px no-repeat;
color: dimgrey;
font-family: monospace;
letter-spacing: .5ch;
}

input:focus {
outline: none;
color: dodgerblue;
}
<label for="name">Name:</label>
<input type="text" id="name" name="name" maxlength="20" />

唯一的要求是只使用 HTML 和 CSS。如果有人能帮助我,我将不胜感激。谢谢!

最佳答案

通过对 backgroundletter-spacingpadding-left 的这些更改,我让它看起来更接近:

input[type="text"] {
border: solid 1px dimgrey;
width: 400px;
background: repeating-linear-gradient(90deg, #ffffff 0px, #ffffff 19px, #000000 20px);
color: dimgrey;
font-family: monospace;
letter-spacing: 1.75ch;
padding-left: 0.8ch;
}

input:focus {
outline: none;
color: dodgerblue;
}
<label for="name">Name:</label>
<input type="text" id="name" name="name" maxlength="20" />

关于HTML 和 CSS 拆分输入表单 - 一个字符一个字符地拆分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51201626/

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