gpt4 book ai didi

php - Laravel 表单标签中的内联 "required"星号

转载 作者:行者123 更新时间:2023-11-28 09:00:17 24 4
gpt4 key购买 nike

我想在 Laravel 中为我的必填字段添加一个红色星号,但我不确定如何将它们添加到标签中。

我目前正在做的是

{{ Form::label('took_act_or_sat' , 'Did you or will you take the SAT or ACT?' ) }} <span style="color: red">*</span>

但是当标签换行到第二行时,由于某种原因星号被额外向下撞了一行。

asterisk

所以我想我的问题的第一部分是:你能在 Laravel 中为表单标签添加内联样式吗?

第二部分是:是否有其他方法可以添加星号(或其他标记),这样这就不会成为问题?

如果它是相关的,我也会在我的大部分样式中使用 Bootstrap,如果它也影响任何东西的话。

最佳答案

用第三个参数给你的标签添加一个类

{{ Form::label('took_act_or_sat' , 'Did you or will you take the SAT or ACT?', array('class' => 'required') ) }}

并用css添加星号

<style>
.required:after{
content:'*';
color:red;
padding-left:5px;
}
</style>

关于php - Laravel 表单标签中的内联 "required"星号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29804668/

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