Форма обратной связи Div перекрывает нижний колонтитул - PullRequest
0 голосов
/ 16 марта 2019

Я делаю свое собственное портфолио и хочу добавить в него контактную форму.Но div, который содержит форму, перекрывает нижний колонтитул на маленьких экранах.Вы можете увидеть проблему, запустив фрагмент кода.Может ли кто-нибудь помочь мне решить эту проблему?Это будет отличная помощь.Большое вам спасибо.

#contactus {
    height: 105vh;
    margin: 0 auto -80px;
    position: relative;
    z-index: 1;
}

#formContainer{ width: 85%;  margin: 0 auto; background-color: aqua;   }

.contactHead{ text-align: center}

.footer{
  height:250px;
  background-color:#1e1e1e;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
}
.footer h2{
  
  color: #fff;
  
}
<div id="contactus">
	
	<div id="formContainer">
		<h1 class="contactHead">Get In Touch!</h1>
		<h4 class="contactHead">I will be with you within 24 hours</h4>
		
		<form id="contactForm">
		<input type="text" id="nameContainer" placeholder="Name">
		<br>
		<br>
		<input type="email" id="emailContainer" placeholder="Email Address">
			
		<br>
		<br>
		<input type="text" id="messageContainer" placeholder="Message">
			
		<br>
		<br>
		<input type="submit" value="Send Message">
		</form>
		
	</div>
	
</div>

<div class="footer">
  <h2>Footer</h2>
  
</div>

1 Ответ

0 голосов
/ 16 марта 2019

Отрицательные поля и высота портят вещи. В чем причина такой высоты и отрицательного поля?

#contactus {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#formContainer {
  width: 85%;
  margin: 0 auto;
  background-color: aqua;
}

.contactHead {
  text-align: center
}

.footer {
  height: 250px;
  background-color: #1e1e1e;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer h2 {
  color: #fff;
}
<div id="contactus">

  <div id="formContainer">
    <h1 class="contactHead">Get In Touch!</h1>
    <h4 class="contactHead">I will be with you within 24 hours</h4>

    <form id="contactForm">
      <input type="text" id="nameContainer" placeholder="Name">
      <br>
      <br>
      <input type="email" id="emailContainer" placeholder="Email Address">

      <br>
      <br>
      <input type="text" id="messageContainer" placeholder="Message">

      <br>
      <br>
      <input type="submit" value="Send Message">
    </form>

  </div>

</div>

<div class="footer">
  <h2>Footer</h2>

</div>
...