5

我有一个代码如下所示的表单:

<div id="right_sidebar">

<form id="your_name" name="your_name" action="#" method="post" style="display: block; "> 
    <fieldset>
        <label for="name">Name</label>
        <input type="text" name="name" id="name" value="">
        <label for="lastname">Last Name</label>
        <input type="text" name="lastname" id="lastname">
                <label for="msg"><a href="#" rel="nofollow" id="msg_toggle">Comment <span class="sp"></span></a></label>
        <textarea name="msg" id="msg" rows="7"></textarea>
        <input type="checkbox" name="agree">
        <label for="agree">Accept the terms</label>
                <button class="blue_button" type="submit">Send</button>
    </fieldset>
    </form>

</div>​

并且使用以下 CSS 进行样式设置:

body {
color: #333;
font: 12px Arial,Helvetica Neue,Helvetica,sans-serif;
}

#right_sidebar {
padding-top: 12px;
width: 190px;
position:relative;
}

form {
background: #EEF4F7;
border: solid red;
border-width: 1px 0;
display: block;
margin-top: 10px;
padding: 10px;
}

form label {
color: #435E66;
    display:block;
font-size: 12px;
    }

form textarea {
border: 1px solid #ABBBBE;
margin-bottom: 10px;
padding: 4px 3px;
width: 160px;
-moz-border-radius: 3px;
border-radius: 3px;
}
form label a {
display: block;
padding-left: 10px;
position: relative;
text-decoration: underline;
}


form label a .sp {
background: #EEF4F7;
height: 0;
left: 0;
position: absolute;
top: 2px;
width: 0;
border-top: 4px solid transparent;
border-bottom: 4px solid transparent;
border-left: 4px solid #333;
}

form button.blue_button {
margin-top: 10px;
vertical-align: top;
}

button.blue_button{
color: white;
font-size: 12px;
height: 22px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
button.blue_button {
background-color: #76C8C6;
border: 1px solid #7798B7;
text-shadow: 1px 1px 0px #567C9E;
}

如您所见,复选框位于标签顶部。我希望两者都“在同一条线上”。因此,它看起来像“[] 接受条款”。以及如何使文本与复选框垂直对齐。

我怎么能两者兼得?

你可以在这里看到它:表单,复选框失败

4

10 回答 10

9

一种选择是修改label复选框后面的元素的样式:

​input[type=checkbox] + label {
    display: inline-block;
    margin-left: 0.5em;
    margin-right: 2em;
    line-height: 1em;
}

JS 小提琴演示

然而,这有点脆弱,因为margins 有点随意(并且margin-right纯粹是为了将以下内容强制button到下一行)。此外,attribute-equals 选择器可能会在旧浏览器中引起问题。

正如在评论中暗示的那样,外星人先生实际上更容易使用这个选择器符号来定位复选框本身:

input[type=checkbox] {
    float: left;
    margin-right: 0.4em;
}

JS 小提琴演示

于 2012-11-03T19:57:27.987 回答
1

这是因为标签display: block上有。这意味着(没有浮动或黑客)它将声称它是自己的行。
将其更改为display: inline-block或离开显示规则,您就完成了。

看到你故意为前两个标签这样做,你应该给accept the terms标签一个 id 和 use form #accepttermslabel {display: inline-block}。这将覆盖其他规则等,因为它更具体。

于 2012-11-03T19:38:16.113 回答
1

将您的复选框和文本包装在<label>标签内。与您当前的 CSS 一起工作,如本jsFiddle Demo中所示。

<label for="checkbox">
    ​&lt;input id="checkbox" type="checkbox"> My Label
</label>​​​​​​​​​​​​​​​​​​​​​​​​​​
于 2012-11-03T19:38:50.940 回答
0

用一点点改变的小提琴。我将复选框嵌套在标签内。

    <label for="agree"><input type="checkbox" name="agree">Accept the terms</label>

希望能帮助到你。

于 2012-11-03T19:40:37.423 回答
0

您需要做的就是添加display: inlinelabel. 像这样:

label[for="agree"] {
  display: inline;
}

您可能还必须添加以下内容以使Send按钮保持在自己的行中:

button[type="submit"] {
  display: block;
}

这足以让它工作,但你也可以嵌套在input里面label,像这样:

<label for="agree">
  <input type="checkbox" name="agree" />
  Accept the terms
</label>

然而,大多数人避免这样做,因为它在语义上是有限的。我会用第一种方法。

于 2012-11-03T19:43:58.570 回答
0

在复选框列表上设置一个类,如下所示:

<asp:CheckBoxList ID="chkProject" runat="server" RepeatLayout="Table" RepeatColumns="3" CssClass="FilterCheck"></asp:CheckBoxList>

然后添加以下 CSS:

.FilterCheck td {
    white-space:nowrap !important;
}

这可确保标签与复选框保持在同一行。

于 2014-02-02T18:02:31.620 回答
0

我在 bootstrap 3 水平表单中遇到了同样的问题,最后找到了一个尝试错误的解决方案,并且也可以使用普通的 html-css。检查我的Js Fiddle 演示

.remember {
    display: inline-block;
}
.remember input {
    position: relative;
    top: 2px;
}
<div>
    <label class="remember" for="remember_check">
        <input type="checkbox" id="remember_check" /> Remember me
    </label>
</div>

于 2015-06-03T12:00:44.957 回答
0

尝试过flex 属性?这是添加了 flex 的示例

  1. HTML

    <div id="right_sidebar">
    <form id="send_friend" name="send_friend" action="#" method="post" style="display: block; ">
    <fieldset>
        <label for="from">From</label>
        <input type="text" name="from" id="from" value="">
        <label for="to">To</label>
        <input type="text" name="to" id="to">
        <label for="msg"><a href="#" rel="nofollow" id="msg_toggle">Comment <span class="sp"></span></a>
        </label>
        <textarea name="msg" id="msg" rows="7"></textarea>
        <div class="row">
            <div class="cell" float="left">
                <input type="checkbox" name="agree">
            </div>
            <div class="cell" float="right" text-align="left">
                <label for="agree">Accept the terms</label>
            </div>
        </div>
        <button class="blue_button" type="submit">Send</button>
    </fieldset>
    </form>
    </div>
    
  2. CSS

    body {
        color: #333;
        font: 12px Arial, Helvetica Neue, Helvetica, sans-serif;
    }
    [class="row"] {
        display: flex;
        flex-flow: row wrap;
        margin: 2 auto;
    }
    [class="cell"] {
        padding: 0 2px;
    }
    #right_sidebar {
        padding-top: 12px;
        width: 190px;
        position:relative;
    }
    form {
        background: #EEF4F7;
        border: solid red;
        border-width: 1px 0;
        display: block;
        margin-top: 10px;
        padding: 10px;
    }
    form label {
        color: #435E66;
        display:block;
        font-size: 12px;
    }
    form textarea {
        border: 1px solid #ABBBBE;
        margin-bottom: 10px;
        padding: 4px 3px;
        width: 160px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    form label a {
        display: block;
        padding-left: 10px;
        position: relative;
        text-decoration: underline;
    }
    form label a .sp {
        background: #EEF4F7;
        height: 0;
        left: 0;
        position: absolute;
        top: 2px;
        width: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid #333;
    }
    form button.blue_button {
        margin-top: 10px;
        vertical-align: top;
    }
    button.blue_button {
        color: white;
        font-size: 12px;
        height: 22px;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }
    button.blue_button {
        background-color: #76C8C6;
        border: 1px solid #7798B7;
        text-shadow: 1px 1px 0px #567C9E;
    }
    

例如,Flex 允许使用 div 进行表格样式控制。

于 2015-09-18T09:05:07.103 回答
0

我发现使复选框和标签对齐的最简单方法是:

    .aligned {
        vertical-align: middle;
    }
    <div>
        <label for="check">
            <input class="aligned" type="checkbox" id="check" /> align me 
        </label>
    </div>
    <div>
        <input class="aligned" type="checkbox" />
        <label>align me too</label>
    </div>
    <div>
        <input type="checkbox" />
        <label>dont align me</label>
    </div>

于 2016-07-29T10:16:08.403 回答
0

我知道这篇文章很旧,但我想帮助那些将来会看到这个的人。答案很简单。

<input type="checkbox" name="accept_terms_and_conditions" value="true" />
<label id="margin-bottom:8px;vertical-align:middle;">I Agree</label>

于 2017-10-26T16:05:56.327 回答