正文没有用reactjs / react-bootstrap覆盖整个页面

时间:2018-08-02 00:04:48

标签: javascript html css reactjs

我的问题就好像标题说我有渐变背景,但它不能覆盖整个页面,正如您在此处看到的那样,您会注意到导航栏下方的颜色略有不同。修复

enter image description here Result from using height:100vh

这是我的CSS代码

.App {
  text-align: center;
  color: black;
  background: #bdc3c7;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.CarouselIndex{
  margin-left: 10%;
  margin-right: 10%;
}

.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand>img {
  padding: 7px 14px;
}

.LogoHeader{
  color: white;
}

.Footer{
  background-color: black;
  position:relative;
	width: 100%;
	height: 80px;
	color:white;
  border-color: black;
  margin-bottom: auto;
	text-align: center;
  left: 0;
  bottom: 0;
}

.aboutimg{
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.textarea{
  resize: vertical;
}

1 个答案:

答案 0 :(得分:0)

当您将height: 100vh添加到.App类时,它可能会起作用。该导航栏是从框架导入的吗?