gpt4 book ai didi

CSS:表单中的多列部分

转载 作者:行者123 更新时间:2023-11-28 11:43:55 26 4
gpt4 key购买 nike

我是 CSS 新手。我将尝试解释我想要实现的目标。我有 5 个“ block ”。每个 block 都有一个标题,然后是几个标签 - 用于数据输入的输入对。标签和输入应该很好地对齐。每个 block 的标题应在该 block 上方居中

现在的诀窍是,这 5 个 block 应该并排出现在一个表单中,该表单包含用于数据输入的其他正常标签输入对。 (这里的标签输入已经对齐,这意味着在“表单级别”上有一些 css:

.cssform {
padding-top: 2em;
padding-bottom: 2em;
}

.cssform div{
max-width: 680px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
}

.cssform label{
color: #990033;
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}


.cssform input[type="text"]{ /*width of text boxes. IE6 does not understand this attribute*/
width: 180px;
padding-bottom: 5px
}

这在某种程度上扰乱了我正在尝试创建的上述 block 布局。我目前的主要问题是剩余的填充或边距。我的“ block ”向右偏移了 150 像素,我不知道如何覆盖。这是我当前的 CSS:

.cssform div.scores{
max-width: 680px;
clear: none;
float: left;
margin: 0;
padding: 5px 20px 8px 0;
padding-left: 0px
}

.cssform div.scores label{
float: left;
margin-left: 0px; /*width of left column*/
width: 100px;
}

.cssform div.scores input[type="text"]{
width: 20px;
padding-bottom: 5px
}

.scores h3 {

}

有了这个,我的第一个 block 是向右 150 像素,而不是尽可能坐在最左边。

第二个问题是对齐每个 block 的标题。

有什么想法吗?

编辑:

这里使用的一般元素:

<!-- Block 1 -->
<div class="scores">
<h3 class="scoreClass1">Score Class 1</h3>
<div>
<label class="scoreClass1">Label 1</label>
<input name="value1" type="text" class="scoreClass1"/>
</div>
<div>
<label class="scoreClass1">Label 2</label>
<input name="value2" type="text" class="scoreClass1"/>
</div>
<!-- More Values -->
</div>
<!-- Block 2 -->
<div class="scores">
<h3 class="scoreClass2">Score Class 2</h3>
<!-- Block 2 Values... -->

最佳答案

问题是这样的:

.cssform label{
color: #990033;
font-weight: bold;
float: left;
margin-left: -155px; /*width of left column*/
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

.cssform div{
max-width: 680px;
clear: left;
margin: 0;
padding: 5px 0 8px 0;
padding-left: 155px; /*width of left column containing the label elements*/
}

我必须承认,在开始学习 css 时,我曾从 inet 复制粘贴此内容,但现在我发现在解决我的问题时它可以做得更简单:

.cssform div{
max-width: 680px;
clear: left;
margin: 0;
padding: 5px 20px 8px 0;
}
.cssform label{
color: #990033;
font-weight: bold;
float: left;
width: 150px; /*width of labels. Should be smaller than left column (155px) to create some right margin*/
}

关于CSS:表单中的多列部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13796142/

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