gpt4 book ai didi

css - 需要什么 CSS 才能使编辑器标签和编辑器字段以并排布局显示?

转载 作者:技术小花猫 更新时间:2023-10-29 11:10:34 25 4
gpt4 key购买 nike

因此默认 MVC 应用程序具有以下 css(在 Site.css 中)-

/* Styles for editor and display helpers
----------------------------------------------------------*/
.display-label,
.editor-label
{
margin: 1em 0 0 0;
}

.display-field,
.editor-field
{
margin:0.5em 0 0 0;
}

.text-box
{
width: 30em;
}

.text-box.multi-line
{
height: 6.5em;
}

.tri-state
{
width: 6em;
}

需要进行哪些更改?谢谢

最佳答案

这是一个CSS问题。您正在寻找的是名为 display: inline-block 的属性。

它的作用是将元素设置为 block ,但不会像 block 那样在元素前后放置分页符。

.display-field,
.editor-field
{
display: inline-block;
margin:0.5em 0 0 0;
}

关于css - 需要什么 CSS 才能使编辑器标签和编辑器字段以并排布局显示?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5738625/

25 4 0