Firefox,Form是抵消的。适用于其他浏览器

时间:2017-10-14 12:34:49

标签: html css firefox

你好Firefox在表格中是偏移的。绝对不知道为什么,因为它适用于chrome和Internet-explorer。我使用的是Firefox 56.0(32位)。

表单是使用flexbox设计的。

enter image description here

<form class="form wow fadeIn">
  <div class="flex">
    <div class="flexcontainer_new">
      <label for="name" >Dein Name: </label><br>
      <input class="input" type="text" name="name" id="name" ><br>
    </div>
    <div class="flexcontainer_new margin_left_60" >
      <label for="email" >Deine Email: </label><br>
      <input class="input" type="text" name="email" id="email" ><br>
    </div>
</div>
<div class="flexcontainer_new_2.0">
  <label class="margin-bottom_20" for="description" >Erzähl mir von deinem Projekt: </label><br>
  <textarea></textarea>
</div>

<input href="" type="submit" value="Senden">
</form>

.flexcontainer_new{
  display:flex;
  margin: 100px auto 0;
  width:750px;
  height: 100px;
  flex-direction: column;
}
.flexcontainer_new_2.0{
  display:flex;
  margin: 0 auto;
  width:100px;
  flex-direction: column;
}

0 个答案:

没有答案