试图从左到右获得div块,但它们被卡在左侧

时间:2013-03-18 02:48:29

标签: css html

我正试图让这名学生工作人员的博客文章从左到右,并自动换行到下一行。问题是div块只会留在左侧。我在CSS中缺少什么东西?

.page_container {
  float: left;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  margin-top: 30px;
  min-height: 250px;
  padding: 0 15px;
  position: relative;
  width: 700px;
}

.staff_container {
  float: left;
  font-family: Arial,Helvetica,sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 20px;
  margin-top: 30px;
  padding: 0;
  position: relative;
  width: 300px;
}

Weber State PRSSA Staff Page here

1 个答案:

答案 0 :(得分:1)

你的意思是这样吗?

enter image description here

我添加了这些样式:

.post {
    float: left;
    width: 300px;
}

.staff_container {
    width: 100%;
}