gpt4 book ai didi

css - 默认脚手架的样式

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

我如何设计 (CSS) 默认脚手架以使标签和编辑器位于同一行(标签列具有固定宽度)

    <div class="editor-label">
@Html.LabelFor(model => model.Price)
</div>
<div class="editor-field">
@Html.EditorFor(model => model.Price)
@Html.ValidationMessageFor(model => model.Price)
</div>

最佳答案

您可能需要调整宽度。边框仅在您进行开发时用作指南。

<style type="text/css">

.editor-label {
float: left;
border: 1px solid red;
width: 200px;
margin-bottom: 4px;
}

.editor-field {
float: left;
width: 400px;
border: 1px solid green;
}

.editor-label:before {
clear: left;
}

</style>

关于css - 默认脚手架的样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4626857/

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