0

我正在尝试创建一个包含多行的表单。每行都有一个可选输入字段,后跟一个必填按钮。按钮应垂直排列 - 如下所示:

_____________  _______________
|  input 1  |  |   button 1  |
|___________|  |_____________|
               _______________
               |   button 2  |
               |_____________|

我试图以固定的左边距使按钮向左浮动,但这样做会将输入字段移动到按钮的右侧 - 即使输入字段首先出现在标记中:

<div>
    <input type="text">
    <button>Action 1</button>
</div>

在此处查看我的 jsfiddle 。为什么会发生这种情况,正确的解决方案是什么?

4

6 回答 6

0

Here's an alternative, the margins and colors may need modification. See jsfiddle link for sample result.

It has a left-aligned label and right-aligned input (button style) in a div, for each line. The non-breaking space is needed as a placeholder in the span element that represents an "empty label".

http://jsfiddle.net/qallar/kfgCb/5/

The html is:

<div class='line'>
  <span class='formlabel'>label 1</span>
  <input class='formbutton' type='button' value='button 1 text ' />
</div>

<div class='line'>
  <span class='formlabel'>&nbsp;</span>
  <input class='formbutton' type='button' value='button 2 text' />
</div>

and the css:

.line
{
  display: block;
  background-color: #ddd; /* also try #fff */
  margin: 0px;
  padding: 2px;
  height: 30px;
  width: 200px;    
}

.formlabel
{
  float: left;
  background-color: #eee; /* also try #fff */
  margin: 0px;
  padding: 2px;
  width: 75px;
  height: 100%;
  clear: both;    
}

.formbutton
{
  float: right;
  background-color: #0f0;
  margin: 0px;
  padding: 0px;
  width: 100px;
  height: 100%;    
}
于 2012-12-26T03:03:41.883 回答
0

输入字段飞到按钮的右侧,因为它是一个内联元素。浮动仅适用于块元素,内联元素将始终围绕浮动元素流动。这解释了原始 jsFiddle 中的行为。

话虽如此,即使我将 display:block 放在输入元素上,它仍然表现得像内联。不过,我能够使基本概念适用于 div,这是一个真正的块元素。请参阅此处的 jsFiddle 。

<div class="row">
    <button>Action 1</button>
    <div class="in"></div>
</div>

.row {
    clear: both;
}

.in {
    background-color: green;
    height: 24px;
    width: 100px;
}

button {
    float: left;
    margin-left: 110px;
    width: 150px;
}

唯一的解决方法似乎是 Musa 提供的一种解决方法(参见这个 jsFiddle),他使用 text-align 将按钮向右对齐并限制 div 的宽度。

于 2012-12-26T06:28:27.217 回答
0

使用行。

<div class="row-rap">
    <div class="right">
        <input type="text">
    </div>
    <div class="left">
        <input type="button" value="Action 1">
    </div>
</div>
<div class="row-rap">
    <div class="right">
        <input type="text">
    </div>
    <div class="left">
        <input type="button" value="Action 2">
    </div>
</div>​

使用以下样式。

div.row-rap {
    width: 100%;
}
div.row-rap .right, div.row-rap .left {
    width: 50%;
    float: left;
}
于 2012-12-26T00:28:45.967 回答
0

您需要 div 容器来执行此操作,如此jsFiddle所示。

HTML 代码

<div class="container">
    <div class="left">
        <button>
    </div>
    <div class="right">
        <button>
    </div>
</div>

CSS 代码

.container {
    width: 190px;
    height: 22px;
    margin: 0;
}

.left {
    float: left;
    width: 95px;
    height: 22px;
}

.right {
    float: right;
    width: 95px;
    height: 22px;
}

​</p>

于 2012-12-26T00:31:04.377 回答
0

我不是 CSS 专家,通常这项任务适用于我使用表格

<table>
<tr><td>Optional Input</td><td>Button</td></tr>
<tr><td>Optional Input</td><td>Button</td></tr>
</table>

如果由于某种原因表格不是一个选项,您可以使用 div/span

<div style="display: table-row">
<span style="display: table-cell">Optional Input</span>
<span style="display: table-cell">Button</span>
</div>

大概是这样的

在此处输入图像描述

于 2019-06-03T17:38:31.663 回答
-1

using Block formatting context https://developer.mozilla.org/en-US/docs/CSS/Block_formatting_context

jsfiddle code: http://jsfiddle.net/EeNFH/9/

the html code:

<div class="inp">
    <input type="text">
</div>
<div class="btns">
    <p><button>Action 1</button></p>
    <p><button>Action 2</button></p>
</div>

and the styles:

input {
    width: 100px;
}

button {
    width: 150px;
}

.inp{
    float:left;
}

.btns{
    overflow:hidden;
}
​
于 2012-12-26T03:15:48.110 回答