我有一个响应式网站,它有一个主要内容区域 ( .content-wrapper
) 和一个侧边栏区域 ( .search-listing
)。我需要两列高度相同。目前我正在尝试使用以下内容:
jQuery(document).ready(function() {
var divone = jQuery(".search-listing").height();
var divtwo = jQuery(".content-wrapper").height();
var maxdiv = Math.max(divone, divtwo);
jQuery(".search-listing").height(maxdiv);
jQuery(".content-wrapper").height(maxdiv);
});
但问题是,.search-listing
从页面开始向下比.content-wrapper
. 在这里你可以看到它:
http://landpros.turnpostinteractive.com/LandPros_Results_2.html
侧边栏的高度相同,但我需要减去一些像素,因为 div .search-listing 在页面上的起始位置与 .content-wrapper 不同。
任何帮助将不胜感激!