gpt4 book ai didi

html - 将 CheckBox 和 Label 放在同一行 MVC

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

我搜索了论坛并尝试了很多选项,但仍然无法正常工作。如前所述,我试图让我的标签和复选框在同一行。

HTML

    <div class="row">
<div class="col">
<div class="editor">
@Html.LabelFor(model => model.Gen_Print_Due_Before_Run)
@Html.CheckBoxFor(model => model.Gen_Print_Due_Before_Run)
@Html.ValidationMessageFor(model => model.Gen_Print_Due_Before_Run)
</div>
</div>
</div>

CSS

.row {
overflow: hidden;
padding: 10px;
}
.col {
float: left;
width: 50%
}

.editor label {
float: left;
width: 30px;
text-align: right;
}
.editor input[type="checkbox"] {
width: 80px;
margin: 0 0 0 10px;
}

最佳答案

对我来说可行的解决方案是:

<div class="checkbox">
<label>
<input type="checkbox" id="mycheckbox" name="mycheckbox"> LabelTextHere
</label>
</div>

关于html - 将 CheckBox 和 Label 放在同一行 MVC,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22716968/

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