Div的反应异常

时间:2019-09-06 17:22:15

标签: html css

我有3个div,而中心div的行为不符合预期,

我有HEADER div --->子内容div ---> services-section

子内容div的响应方式不符合预期,图像如下:http://prntscr.com/p2roxk

其他div正在100%工作

isCurrentPath
.sub-content {
  background: #FF4E00;
  height: 200px;
  text-align: center;
  margin-top: 280px;
  position: relative;
  font-family: 'Open sans', sans-serif;
}

.sub-content h2 {
  color: white;
  font-size: 30px;
  padding-top: 30px;
  text-transform: uppercase;
}

.sub-content p {
  color: white;
  padding-top: 30px;
}

1 个答案:

答案 0 :(得分:1)

请注意,您使用的高度是固定值。您可以通过使用min-height代替height来改变它。 示例:

.sub-content {
  background: #FF4E00;
  min-height: 200px;
  text-align: center;
  margin-top: 280px;
  position: relative;
  font-family: 'Open sans', sans-serif;
}