gpt4 book ai didi

html - 无法在输入框中选择文本

转载 作者:行者123 更新时间:2023-12-05 01:22:18 25 4
gpt4 key购买 nike

我有以下 HTML/CSS 用于表单上的 float 标签(对不起,如果它有点乱)

* {
box-sizing: border-box;
}

html {
font: 14px/1.4 Sans-Serif;
}

form {
width: 320px;
float: left;
margin: 20px;
}

form>div {
position: relative;
overflow: hidden;
}

form input {
width: 100%;
border: 2px solid gray;
background: none;
position: relative;
top: 0;
left: 0;
z-index: 1;
padding: 8px 12px;
outline: 0;
margin: 4px 0 4px 0px
}

form input:valid+label {
top: -7%;
z-index: 100;
font-size: 70%;
padding: 1px 6px;
}

input:valid+label>div {
padding: 2px;
text-transform: uppercase;
}

form label {
transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
position: absolute;
color: #999;
padding: 7px 6px;
}

form.test-form input {
padding: 12px 12px 12px 12px;
}

form.test-form label {
top: 0;
bottom: 0;
left: 0;
width: 100%;
}

form.test-form input:focus+label {
top: -7%;
z-index: 100;
font-size: 70%;
padding: 1px 6px;
text-transform: uppercase;
}

.label {
background-color: white;
padding: 10px;
display: inline-block;
transition: padding 0.2s;
}

form.test-form input:focus+label>div {
padding: 2px;
}
<body>
<h1>Test Form</h1>
<form class="test-form">
<div>
<input id="name" name="name" type="text" required>
<label for="name">
<div class="label">
<span class="text">Your Name</span>
</div>
</label>
</div>
</form>
</body>


这正是我需要的方式。唯一的问题是我无法在输入后选择输入框中的文本(如果您尝试它,您会注意到“您的名字”在输入框中的实际文本之前突出显示)。

我假设这与我设置 z-index 的方式有关。 ...有没有办法只为输入框中的文本编辑 z-index?如果没有,是否有明显的解决方案来解决此问题?

最佳答案

试试这个:

* {
box-sizing: border-box;
}

html {
font: 14px/1.4 Sans-Serif;
}

form {
width: 320px;
float: left;
margin: 20px;
}

form>div {
position: relative;

}

form input {
width: 100%;
border: 2px solid gray;
background: none;
position: relative;
top: 0;
left: 0;
z-index: 1;
padding: 8px 12px;
outline: 0;
margin: 4px 0 4px 0px
}


form input:valid+label { /*<--Changed*/
top: -55px;
left:10px;
z-index: 100;
font-size: 70%;
padding: 1px 6px;
position:relative;
}

input:valid+label>div {
padding: 2px;
text-transform: uppercase;
}

form label {
transition: background 0.2s, color 0.2s, top 0.2s, bottom 0.2s, right 0.2s, left 0.2s;
position: absolute;
color: #999;
padding: 7px 6px;
}

form.test-form input {
padding: 12px 12px 12px 12px;
}

form.test-form label {
top: 0;
bottom: 0;
left: 0;
width: 100%;
background:#FFF;
}

form.test-form input:focus+label { /*<--Changed*/
top:-55px;
left:10px;
font-size: 70%;
padding: 1px 6px;
text-transform: uppercase;
}

.label {
background-color: white;
padding: 10px;
display: inline-block;
transition: padding 0.2s;
}

form.test-form input:focus+label>div {
padding: 2px;
}

#name:focus { /*<--Added*/
z-index:1000;
}

#name:focus + label { /*<--Added*/
position:relative;
z-index:1001;
}
<body>
<h1>Test Form</h1>
<form class="test-form">
<div>
<input id="name" name="name" type="text" required>
<label for="name">
<div class="label">
<span class="text">Your Name</span>
</div>
</label>
</div>
</form>
</body>

关于html - 无法在输入框中选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59850686/

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