0

我怎样才能在容器的一侧有一个表格,而在另一侧有一个文本段落?我想如果我把它全部放在一个有一行两列的容器中,它会起作用,但由于某种原因,段落文本显示在左侧的表单下方。

这是根据我现在拥有的代码所发生的事情的屏幕截图。

图像

<div class="container-section getintouch">
    <h1 class="text-center">Say hello?</h1>
    <div class="row">
      <div class="col-xs-6">

        <form>
            <div class="form-group">
              <input type="text" class="form-control no-border    
               placeholder="Email">
            </div>
            <div class="form-group">
              <input type="text" class="form-control no-border"     
              placeholder="Email">
            </div>
  <textarea class="form-control no-border" rows="5" id="comment"></textarea>
            </div>
          </form>

      </div>
      <div class="col-xs-6">
        <h3>Want to say hello? It's always nice meeting new people. Fill out 
            this form to the left and I'll reply to you as soon as I can :)     
        </h3>
      </div>
    </div>enter code here

.container-section{
  width: full;
  height: full;
  margin: 0 auto;
  padding: 100px;
  color: white;
}

.getintouch{
  background: #9dd1f1;
}

我刚开始学习编码,所以如果这看起来是一个愚蠢的问题,我深表歉意。我四处寻找,在任何地方都找不到答案。

先感谢您!

4

1 回答 1

1

在提出任何问题之前正确学习 HTML 和 CSS。

  1. 没有具有 value 的 CSS 规则full
  2. 不要完全padding放弃width
  3. 你忘了添加一个container类。
  4. 很多无效的 HTML,未封闭的东西。

片段

.container-section {
  -margin: 0 auto;
  -color: white;
}
.getintouch {
  background: #9dd1f1;
}
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
<div class="container-section getintouch">
  <h1 class="text-center">Say hello?</h1>
  <div class="container">
    <div class="row">
      <div class="col-xs-6">
        <form>
          <div class="form-group">
            <input type="text" class="form-control no-border" id=formGroupExampleInput " placeholder="Name "">
          </div>
          <div class="form-group">
            <input type="text" class="form-control no-border" id=formGroupExampleInput2 " placeholder="Email "">
          </div>
          <div class="form-group">
            <textarea class="form-control no-border" rows="5" id="comment"></textarea>
          </div>
        </form>
      </div>
      <div class="col-xs-6">
        <h3>Want to say hello? It's always nice meeting new people. Fill out this form to the left and I'll reply to you as soon as I can :)</h3>
      </div>
    </div>
  </div>

预习

预习

输出: http: //jsbin.com/mepiripeju/edit ?html,css,output

于 2017-01-01T01:55:05.170 回答