gpt4 book ai didi

css - HTML Input Required 弄乱了我的输入

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

所以我不想使用“Required”属性,但如果我不把它放在那里,它会完全弄乱我希望我的表单看起来的样子。

The top "Email" input is the one with the required attribute and the bottom does not haveit.

那么为什么删除它会改变它呢?它的设置是当您单击“电子邮件”时,它会移开并看起来像写着密码的那个。

这是我的 html:

    <form action="./includes/login.inc.php" method="post">
<div class="group">
<input type="text" name="emailuid" required=""/><span class="highlight"></span><span class="bar"></span>
<label>Email</label>
</div>
<div class="group">
<input type="password" name="pwduid"/><span class="highlight"></span><span class="bar"></span>
<label>Password</label>
</div>
<div class="btn-box">
<button class="btn btn-submit" type="submit" name="login-submit">Sign in</button>
</div>
</form>

这是我的 CSS 样式(仅用于表单!)

form {
width: 320px;
margin: 45px auto;
}
form h1 {
font-size: 3em;
font-weight: 300;
text-align: center;
color: #2196F3;
}
form h5 {
text-align: center;
text-transform: uppercase;
color: #c6c6c6;
}
form hr.sep {
background: #2196F3;
box-shadow: none;
border: none;
height: 2px;
width: 25%;
margin: 0px auto 45px auto;
}
form .emoji {
font-size: 1.2em;
}

.group {
position: relative;
margin: 45px 0;
}

textarea {
resize: none;
}

input,
textarea {
background: none;
color: #4F4F4F;
font-size: 18px;
padding: 10px 10px 10px 5px;
display: block;
width: 320px;
border: none;
border-radius: 0;
border-bottom: 1px solid #4F4F4F;
}
input:focus,
textarea:focus {
outline: none;
}
input:focus ~ label, input:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label {
top: -14px;
font-size: 12px;
color: #FF3B3F;
}
input:focus ~ .bar:before,
textarea:focus ~ .bar:before {
width: 335px;
}

input[type="password"] {
letter-spacing: 0.3em;
}

label {
color: #4F4F4F;
font-size: 16px;
font-weight: normal;
position: absolute;
pointer-events: none;
left: 5px;
top: 10px;
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
}

.bar {
position: relative;
display: block;
width: 320px;
}
.bar:before {
content: '';
height: 2px;
width: 0;
bottom: 0px;
position: absolute;
background: #FF3B3F;
-webkit-transition: 300ms ease all;
transition: 300ms ease all;
left: 0%;
}

.btn {
background: #fff;
color: #959595;
border: none;
padding: 10px 20px;
border-radius: 3px;
letter-spacing: 0.06em;
text-transform: uppercase;
text-decoration: none;
outline: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
-webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.btn:hover {
color: #752021;
box-shadow: 0 7px 14px rgba(0, 0, 0, 0.18), 0 5px 5px rgba(0, 0, 0, 0.12);
}
.btn.btn-link {
background: #FF3B3F;
color: #d3eafd;
}
.btn.btn-link:hover {
background: #0d8aee;
color: #deeffd;
}
.btn.btn-submit {
background: #FF3B3F;
color: white;
}
.btn.btn-submit:hover {
background: #752021;
color: white;
}
.btn.btn-cancel {
background: #eee;
}
.btn.btn-cancel:hover {
background: #e1e1e1;
color: #8b8b8b;
}

.btn-box {
text-align: center;
margin: 50px 0;
}

我只是很困惑为什么它强制我使用必需的属性,我不想使用它,因为我制作了一个 php 检查器来查看字段是否为空。这打乱了我想要的外观样式。

感谢您的帮助。

最佳答案

TLDR;更改此代码:

input:focus ~ label,
input:valid ~ label,
textarea:focus ~ label,
textarea:valid ~ label
{
top: -14px;
font-size: 12px;
color: #FF3B3F;
}

对此:

input:focus ~ label,
textarea:focus ~ label
{
top: -14px;
font-size: 12px;
color: #FF3B3F;
}

解释:

信不信由你,CSS 样式可以应用于特定具有某些属性的元素,因此您应该始终确保在您的 CSS 中检查与这些属性对应的伪类。示例:input:required {...} 对应于 input 元素上的 required HTML 属性。

让事情变得更加复杂的是,required 属性可以确定是否在该元素上激活了其他伪类,例如 :valid。因此,如果一个元素被设置为required,但该字段没有正确填写,任何指定:invalid 伪类的CSS 将自动被激活。如果填写正确,:valid伪类CSS属性就会生效。

关于css - HTML Input Required 弄乱了我的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54375999/

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