有什么好方法可以克服这段代码不能按预期工作的不幸事实:
<div class="required">
<label>Name:</label>
<input type="text">
</div>
<style>
.required input:after { content:"*"; }
</style>
在一个完美的世界中,所有必需的input
s都会得到一个小星号,表明该字段是必需的。这个解决方案是不可能的,因为CSS是在元素内容之后插入的,而不是在元素本身之后插入,但类似的东西是理想的。在一个包含数千个必填字段的网站上,我可以在输入前移动星号,只需更改一行(:after
到:before
),或者我可以将其移动到标签的末尾(.required label:after
)或标签前面,或在收纳盒等位置......
这一点非常重要,不仅仅是因为我改变了我的想法,无论在哪里放置星号,还要考虑表格布局不允许星号位于标准位置的奇怪情况。它也适用于检查表单或突出显示不正确完成的控件的验证。
最后,它不会添加额外的标记。
是否有任何好的解决方案具有不可能代码的全部或大部分优势?
那是你的想法吗?
<div class="required">
<label>Name:</label>
<input type="text">
</div>
<style>
.required:after { content:" *"; }
</style>
见https://developer.mozilla.org/en-US/docs/Web/CSS/pseudo-elements
.asterisc {
display: block;
color: red;
margin: -19px 185px;
}
<input style="width:200px">
<span class="asterisc">*</span>
它是2019年,此问题的先前答案未使用
CSS网格是在2019年进行表格的方式,因为您可以在输入之前放置标签,而不需要额外的div,跨度,带星号和其他文物的跨度。
这是我们用最小的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>
标签都设置为span 1 / -1。您可以更改媒体查询中的变量,以便输入框在移动设备上全屏显示,并在桌面上显示。如果您希望使用CSS变量方法,也可以在移动设备上更改网格间隙。
当这些方框有效时,你应该得到一个绿色勾号而不是星号。
CSS中的SVG是一种节省浏览器的方法,使得不必对服务器进行往返以获得星号图像。通过这种方式你可以微调星号,这里的例子是一个不寻常的角度,你可以编辑它,因为上面的SVG图标是完全可读的。也可以修改视框以将星号放在中心的上方或下方。
您可以通过将HTML代码封装在div标签中来实现所需的结果,该标签包含“required”类,后跟“form-group”类。*但是只有在您具有Bootstrap时才有效。
<div class="form-group required">
<div class="required">
<label>Name:</label>
<input type="text">
</div>
<div>
对于那些最终在这里,但有jQuery的人:
// javascript / jQuery
$("label.required").append('<span class="red-star"> *</span>')
// css
.red-star { color: red; }
.required label {
font-weight: bold;
}
.required label:after {
color: #e32;
content: ' *';
display:inline;
}
摆弄你的确切结构:http://jsfiddle.net/bQ859/
通过使用星号图片的背景图像并设置标签/输入/外部div的背景和星号图像大小的填充,可以实现类似的结果。像这样的东西:
.required input {
padding-right: 25px;
background-image: url(...);
background-position: right top;
}
这将把星号INSIDE放在文本框中,但是将它放在div.required
而不是.required input
上可能会更像你正在寻找的东西,如果不那么优雅的话。
此方法不需要额外输入。
要将其完全放入INTO输入,如下图所示:
我找到了以下方法:
.asterisk_input::after {
content:" *";
color: #e32;
position: absolute;
margin: 0px 0px 0px -20px;
font-size: xx-large;
padding: 0 5px 0 0; }
<form>
<div>
<input type="text" size="15" />
<span class="asterisk_input"> </span>
</div>
</form>
我工作的网站使用固定布局编码,所以对我来说没问题。
我不确定它对液体设计有好处。
用CSS写
.form-group.required .control-label:after {content:"*";color:red;}
和HTML
<div class="form-group required">
<label class="control-label">Name:</label>
<input type="text">
</div>
input[required], select[required] {
background-image: url('/img/star.png');
background-repeat: no-repeat;
background-position-x: right;
}
图像右侧有20px的空间,不与选择的下拉箭头重叠
它看起来像这样:
input[required]{
background-image: radial-gradient(#F00 15%, transparent 16%), radial-gradient(#F00 15%, transparent 16%);
background-size: 1em 1em;
background-position: right top;
background-repeat: no-repeat;
}
使用jQuery和CSS
jQuery(document).ready(function() {
jQuery("[required]").after("<span class='required'>*</span>");
});
.required {
position: absolute;
margin-left: -10px;
color: #FB0000;
font-size: 15px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" value="xxx" required>
我认为这是有效的方法,为什么这么头痛
<div class="full-row">
<label for="email-id">Email Address<span style="color:red">*</span></label>
<input type="email" id="email-id" name="email-id" ng-model="user.email" >
</div>