时间:2016-08-04 16:53:22

标签: javascript html css jquery-mobile

嘿伙计们对html,css,javascript和jquerymobile很新。我有一个问题,看起来似乎很简单,但我无法弄明白。

注意:即时为此项目使用名为 https://ezoui.com/app/index.html 的网站。

我想创建一个公式(基于html / jquerymobile),用户可以插入不同的值现在是我的问题。我希望其中一些元素有点像这样。

[标签] [textArea / input] _______whitespace_______________ [标签] [textArea / input]

[标签] [textArea / input] _______whitespace_______________ [标签] [textArea / input]

[Label] [textArea / input]

我只能设法让一个Label和一个textarea排成一行而不是多个。

感谢任何建议和示例。

1 个答案:

答案 0 :(得分:0)



p {
  float: left;
  margin-right: 15px !important;
}

<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />



<div class="row">
  <div class="col-xs-6">
    <p>some Label</p>
    <input type="text">
  </div>
  <div class="col-xs-6">
    <p>some other Label</p>
    <input type="text">
  </div>
</div>
<div class="row">
  <div class="col-xs-6">
    <p>sweg</p>
    <input type="text">
  </div>
  <div class="col-xs-6">
    <p>another</p>
    <input type="text">
  </div>
</div>
&#13;
&#13;
&#13;