什么是创建这个div高度?

时间:2017-02-21 04:21:17

标签: css

this page,右上方有一个推荐框。

enter image description here

你能看到是什么造成了这个盒子的高度吗?

链中的任何元素都没有设置高度,子元素也不像TD表格单元格那么高。

帮助表示赞赏。

4 个答案:

答案 0 :(得分:0)

在班级中使用 line-height: 1;

 .cycle-slideshow  {
      line-height: 1;
    }

答案 1 :(得分:0)

推荐部分中不需要的空间正在生成padding-bottom of 15px。尝试删除该填充。

它应该是这样的:

.testimonial-box {
    padding-bottom: 15px;
}

或者将line-height设置为gs_testimonial_container

.gs_testimonial_container {
      line-height: initial;
}

答案 2 :(得分:0)

这行代码为表创建高度。如上所述,表格行高度定义为2。

Line no. 226 : table {border-spacing: 0;line-height: 2;margin-bottom: 40px;width: 100%;word-break: break-word;}

答案 3 :(得分:0)

行高设置为2.这是为该框创建高度的内容。尝试将其更改为1,这将解决问题。

line-height: 1;