现在是 2019 年,以前对这个问题的答案没有使用
- CSS 网格
- CSS 变量
- HTML5 表单元素
- CSS 中的 SVG
CSS 网格是 2019 年创建表单的方式,因为您可以将标签放在输入之前,而无需额外的 div、span、带星号的 span 和其他遗物。
这是我们使用最少 CSS 的地方:
上面的 HTML:
<form action="https://www.example.com/register/" method="post" id="form-validate" enctype="multipart/form-data">
<p class="form-instructions">Please enter the following information to create your account.</p>
<label for="firstname">First name</label>
<input type="text" id="firstname" name="firstname" value="" title="First name" maxlength="255" required="">
<label for="lastname">Last name</label>
<input type="text" id="lastname" name="lastname" value="" title="Last name" maxlength="255" required="">
<label for="email_address">Email address</label>
<input type="email" autocapitalize="off" autocorrect="off" spellcheck="false" name="email" id="email_address" value="" title="Email address" size="30" required="">
<label for="password">Password</label>
<input type="password" name="password" id="password" title="Password" required="">
<label for="confirmation">Confirm password</label>
<input type="password" name="confirmation" title="Confirm password" id="confirmation" required="">
<input type="checkbox" name="is_subscribed" title="Subscribe to our newsletter" value="1" id="is_subscribed" class="checkbox">
<label for="is_subscribed">Subscribe to the newsletter</label>
<input type="checkbox" name="persistent_remember_me" id="remember_meGCJiRe0GbJ" checked="checked" title="Remember me">
<label for="remember_meGCJiRe0GbJ">Remember me</label>
<p class="required">* Required</p>
<button type="submit" title="Register">Register</button>
</form>
占位符文本也可以添加,强烈推荐。(我只是在回答这个中间形式)。
现在对于 CSS 变量:
--icon-required: url('data:image/svg+xml,\
<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="-10 -6 16 16"> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(15)"></line> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(75)"></line> \
<line id="line" y1="-3" y2="3" stroke="%23df0000" stroke-linecap="butt" transform="rotate(-45)"></line> \
</svg>');
--icon-tick: url('data:image/svg+xml,\
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="100" height="100" viewBox="-2 -2 16 16"> \
<path fill="green" stroke-linejoin="round" d="M2 6L1 7l3 4 7-10h-1L4 8z"/> \
</svg>');
表单元素的 CSS:
input[type=text][required],
input[type=email][required],
input[type=password][required],
input[type=tel][required] {
background-image: var(--icon-required);
background-position-x: right;
background-repeat: no-repeat;
background-size: contain;
}
input:valid {
--icon-required: var(--icon-tick);
}
表单本身应该在 CSS 网格中:
form {
align-items: center;
display: grid;
grid-gap: var(--form-grid-gap);
grid-template-columns: var(--form-grid-template-columns);
margin: auto;
}
列的值可以设置为1fr auto
或1fr
使用任何内容,例如<p>
表单中的标签设置为跨度 1/-1。您可以更改媒体查询中的变量,以便输入框在移动设备上和桌面上的输入框一样全宽。如果您愿意,还可以使用 CSS 变量方法更改移动设备上的网格间隙。
当这些框有效时,您应该得到一个绿色的勾号而不是星号。
CSS 中的 SVG 是一种让浏览器不必往返于服务器以获取星号图像的方法。通过这种方式你可以微调星号,这里的例子是在一个不寻常的角度,你可以把它编辑掉,因为上面的 SVG 图标是完全可读的。也可以修改视图框以将星号放置在中心上方或下方。