встроенные поля объединяются при настройке метки - PullRequest
0 голосов
/ 15 сентября 2018

Я пытаюсь создать адаптивную форму, используя flex, где имя и фамилия будут в одном столбце на больших устройствах и в отдельном столбце на небольших устройствах.Я разработал форму, и она работала, как и ожидалось (но не адаптивная часть), пока я не настрою метку в поле ввода.Я использовал position: absolute для настройки метки, чтобы она нарушала дизайн поля имени и фамилии.Они получили слияние сейчас.

Вот демоверсия

http://jsbin.com/pecijupicu/3/edit?html,css

А пока вот исходный код

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  background: #f2f3f78a;
  -webkit-font-smoothing: antialiased;
}

aside.form-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 #f0efef;
  margin: 0 40px;
  border-radius: 6px;
}

.form-container h3 {
  color: rgb(67, 77, 90);
}

form {
  min-width: 400px;
  width: 600px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

form .field {
  margin: 15px 0;
  /* flex-direction: column; */
  display: flex;
  position: relative;
}

.form-input {
  flex: 1;
}

label {
  position: absolute;
  top: 4px;
}

form .field label {
  margin: 10px 0;
  color: rgb(67, 77, 90);
}

button.next {
  padding: 10px 0;
  width: 100px;
  background: rgb(0, 213, 229);
  border: none;
  display: flex;
  justify-content: center;
}

button.next:after {
  content: "Next";
  color: #fff;
}

input[type="text"],
textarea {
  padding: 8px;
  border: transparent;
  border-bottom: solid 1px #999;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-bottom: solid 1px rgb(0, 213, 229);
}

textarea {
  width: 100%;
}
<aside class="form-container">
  <h3>Personal</h3>
  <form>
    <div class="field">
      <label>First Name</label>
      <input type="text" name="name" class="form-input" />
      <label>Last Name</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Email</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Country</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>City</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Description</label>
      <textarea></textarea>
    </div>
    <!-- show button to the bottom right corner -->
    <button class="next"></button>
  </form>
</aside>

Ответы [ 2 ]

0 голосов
/ 15 сентября 2018

Я внес некоторые изменения в структуру html и добавил несколько дополнительных стилей в соответствии с вашим вариантом использования. Мое решение также поддерживает отзывчивость.

ссылка на рабочий пример: JSbin

Вот код:

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  background: #f2f3f78a;
  -webkit-font-smoothing: antialiased;
}


aside.form-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 #f0efef;
  margin: 0 40px;
  border-radius: 6px;
}

.form-container h3{
   color: rgb(67, 77, 90);
}

form {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

form .field {
    margin: 15px 0;
    /* flex-direction: column; */
    display: flex;
    position: relative;
}

form .combined{
  display: flex;
  flex-direction: row;
 
}

.form-input {
  flex: 1;
}

form .combined .field{
  flex:1;
  justify-content: space-between;
  /* border: 1px solid red; */
}

form .combined .field .form-input{
  margin-right: 20px;
}

label {
  position: absolute;
  top: 4px;
}


form .field label {
  margin: 10px 0;
  color: rgb(67, 77, 90);
}

button.next {
  padding: 10px 0;
  width: 100px;
  background: rgb(0,213,229);
  border: none;
  display: flex;
  justify-content: center;
}

button.next:after {
    content: "Next";
    color: #fff;
}

input[type="text"], textarea {
    padding: 8px;
    border: transparent;
    border-bottom: solid 1px #999;
}

input[type="text"]:focus, textarea:focus {
    outline: none;
    border-bottom: solid 1px rgb(0,213,229);
}

textarea {
  width: 100%;
}

@media screen and (max-width: 520px) {
    form .combined{
      display: flex;
      flex-direction: column;
    }
    form .combined .field{
      flex:1;
      justify-content: space-between;
      margin: 25px 0;
    }
    form .combined .field label{
      position: absolute;
      top: -11px;
    } 
    form .combined .field .form-input{
      margin-right: 0;
    }
}
<aside class="form-container">
  <h3>Personal</h3>
  <form>
    <div class="combined">
        <div class="field">
          <label>First Name</label>
          <input type="text" name="name" class="form-input" />
        </div>
        <div class="field">
          <label>Last Name</label>
          <input type="text" name="name" class="form-input" />
       </div>
     </div>
    <div class="field">
      <label>Email</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Country</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>City</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Description</label>
      <textarea></textarea>
    </div>
    <!-- show button to the bottom right corner -->
    <button class="next"></button>
  </form>
</aside>
0 голосов
/ 15 сентября 2018

Добавьте left: 50% к фамилии label - это имеет смысл, поскольку абсолютно позиционированные метки разделяют всю ширину 50-50 из-за предоставленной им flex: 1. Смотри демо ниже:

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  background: #f2f3f78a;
  -webkit-font-smoothing: antialiased;
}

aside.form-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px 0 #f0efef;
  margin: 0 40px;
  border-radius: 6px;
}

.form-container h3 {
  color: rgb(67, 77, 90);
}

form {
  min-width: 400px;
  width: 600px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

form .field {
  margin: 15px 0;
  /* flex-direction: column; */
  display: flex;
  position: relative;
}

.form-input {
  flex: 1;
}

label {
  position: absolute;
  top: 4px;
}

form .field label {
  margin: 10px 0;
  color: rgb(67, 77, 90);
}

form .field label:nth-of-type(2) {
  left: 50%; /* ADDED */
}

button.next {
  padding: 10px 0;
  width: 100px;
  background: rgb(0, 213, 229);
  border: none;
  display: flex;
  justify-content: center;
}

button.next:after {
  content: "Next";
  color: #fff;
}

input[type="text"],
textarea {
  padding: 8px;
  border: transparent;
  border-bottom: solid 1px #999;
}

input[type="text"]:focus,
textarea:focus {
  outline: none;
  border-bottom: solid 1px rgb(0, 213, 229);
}

textarea {
  width: 100%;
}
<aside class="form-container">
  <h3>Personal</h3>
  <form>
    <div class="field">
      <label>First Name</label>
      <input type="text" name="name" class="form-input" />
      <label>Last Name</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Email</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Country</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>City</label>
      <input type="text" name="name" class="form-input" />
    </div>
    <div class="field">
      <label>Description</label>
      <textarea></textarea>
    </div>
    <!-- show button to the bottom right corner -->
    <button class="next"></button>
  </form>
</aside>
...