我无法平衡两个浮动 div 的高度。我想要完成的是在两个并排的 div 中显示相同的高度,因为内容的长度会发生变化。现在我的浏览器似乎只是忽略了 Jquery 代码。
这是我所拥有的:
<style>
#column_first {
width: 300px
float: left;
margin: 15px;
padding: 25px;
background-color:#fff;
}
#column_second {
width:300px;
float: left;
margin: 15px;
padding: 25px;
background-color:#fff;
height: auto;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
var maxHeight = 0;
$("#column_first").each(function(){
if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }
});
$("#column_second").height(maxHeight);
</script>
</head>
<body>
<div id="column_first"><p>Some Text</p></div>
<div id="column_second"><p>Some Text</p></div>