欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

ReactJS:如何對齊form & ltField & gt's & lt輸入& gt并且& ltbutton & gt并且& lth1 & gt在a & ltdiv & gt?

方一強1年前6瀏覽0評論

我有& ltbutton/>;并且& ltinput/>;在一個容器里。我怎樣才能讓它們對齊在同一行,彼此相鄰,并在容器的中間垂直?

這是我目前掌握的情況:

enter image description here

頂部的黑色部分是一個導航欄,我想將它們從左到右并排對齊,并在導航欄的中間垂直對齊:

請查看底部的編輯以獲取更新的代碼

import { Field, reduxForm } from 'redux-form';

       const form = reduxForm({
         form: 'register'
       });

       ...

  <div id="wrapper">
    <header>
       <div className="container">
        <h1>
          TESTING
        </h1>
        <form>
            <Field
              name="email"
              className="form-control"
              component={
                  <div>
                    <input
                      className="form-control"
                      id="input-field"
                      placeholder='Enter Email'
                    />
                 </div>
              }
              type="text"
            />
            <button
              type="submit"
              className="btn"
            >
              Register
            </button>
          </form>
        </div>
    </header>
  </div>

和CSS樣式表:

#wrapper {
  width: 100%;
  margin: 0 auto;
}

.container {
  display: flex;
  justify-content: center;
}

header {
  width: 100%;
  height: 85px;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: black;
  }
header h1#logo {
  display: inline-block;
  height: 85px;
  line-height: 85px;
  float: left;
  font-size: 25px;
  color: purple;
  font-weight: 500;
}

#input-field {
  background-color: rgba(255,255,255,0.1);
  border-radius: 5px;
  width: 150px;
  height: 40px;
  padding: 5px;
}

編輯

決定去掉表單,但CSS保持不變。我怎樣才能靈活地對齊下面的內容,以達到我最初想要的效果(希望h1在左邊,文本字段+按鈕在右邊?

<div id="wrapper">
    <header>
       <div className="container">
          <h1>
            TESTING
          </h1>
          <input
            className="form-control"
            id="input-field"
            placeholder='Enter Email'
          />
          <button
            type="submit"
            className="btn"
          >
            Register
          </button>
      </div>
    </header>
  </div>

編輯

這就是使用flex屬性的方法。

此外,一定要用class替換HTML中的所有類名。一定要根據你的喜好來設計你的輸入和按鈕。

.container {
  display: flex;
}
h1,
.btn,
#input-field {
  flex: 1;
}

<div id="wrapper">
  <header>
    <div class="container">
      <h1>
            TESTING
          </h1>
      <input class="form-control" id="input-field" placeholder='Enter Email' />
      <button type="submit" class="btn">
        Register
      </button>
    </div>
  </header>
</div>