127

我有一个通用表单,我想对其进行样式设置以对齐标签和输入字段。出于某种原因,当我为标签选择器指定宽度时,没有任何反应:

HTML:

<form id="report-upload-form" method="POST" action="" enctype="multipart/form-data">
    <p>
        <label for="id_title">Title:</label> 
        <input id="id_title" type="text" class="input-text" name="title"></p>
    <p>
        <label for="id_description">Description:</label> 
        <textarea id="id_description" rows="10" cols="40" name="description"></textarea></p>
    <p>
        <label for="id_report">Upload Report:</label> 
        <input id="id_report" type="file" class="input-file" name="report">
    </p>
</form>

CSS:

#report-upload-form {
    background-color: #316091;
    color: #ddeff1;
    font-weight:bold;
    margin: 23px auto 0 auto;
    border-radius:10px;
    width: 650px;
    box-shadow:  0 0 2px 2px #d9d9d9;
}

#report-upload-form label {
    padding-left:26px;
    width:125px;
    text-transform: uppercase;
}

#report-upload-form input[type=text], 
#report-upload-form input[type=file],
#report-upload-form textarea {
    width: 305px;
}

输出:

在此处输入图像描述

jsFiddle

我究竟做错了什么?

4

7 回答 7

238

display: inline-block

#report-upload-form label {
    padding-left:26px;
    width:125px;
    text-transform: uppercase;
    display:inline-block
}

http://jsfiddle.net/aqMN4/

于 2012-05-30T13:06:26.103 回答
42

采用display: inline-block;

解释:

是一个内联元素,这label意味着它只有需要的大小。

display属性设置为inline-blockblock以使width属性生效。

例子:

#report-upload-form {
    background-color: #316091;
    color: #ddeff1;
    font-weight: bold;
    margin: 23px auto 0 auto;
    border-radius: 10px;
    width: 650px;
    box-shadow: 0 0 2px 2px #d9d9d9;

}

#report-upload-form label {
    padding-left: 26px;
    width: 125px;
    text-transform: uppercase;
    display: inline-block;
}

#report-upload-form input[type=text], 
#report-upload-form input[type=file],
#report-upload-form textarea {
    width: 305px;
}
<form id="report-upload-form" method="POST" action="" enctype="multipart/form-data">
    <p><label for="id_title">Title:</label> <input id="id_title" type="text" class="input-text" name="title"></p>
    <p><label for="id_description">Description:</label> <textarea id="id_description" rows="10" cols="40" name="description"></textarea></p>
    <p><label for="id_report">Upload Report:</label> <input id="id_report" type="file" class="input-file" name="report"></p>
</form>

于 2012-05-30T13:05:13.103 回答
6

我相信标签是内联的,所以它们没有宽度。也许尝试使用“显示:块”并从那里开始。

于 2012-05-30T13:05:02.330 回答
6

首先将其设为一个块,然后向左浮动以停止将下一个块推入新行。

#report-upload-form label {
                           padding-left:26px;
                           width:125px;
                           text-transform: uppercase;
                           display:block;
                           float:left
}
于 2012-05-30T13:09:08.130 回答
5

给风格

display:inline-block;

希望这会有所帮助'

于 2012-05-30T13:05:25.257 回答
4

label的默认display模式是inline,这意味着它会根据内容自动调整大小。要设置宽度,您需要设置display:block然后进行一些处理以使其正确定位(可能涉及float

于 2012-05-30T13:05:37.557 回答
0
   label
    {
    display: inline-block;
    }

将为您提供更改标签宽度和自定义对齐表单的灵活性。干杯

于 2021-04-14T02:36:17.477 回答