아래 코드는 가장 큰 열 (.border)의 높이를 찾고 .container div 내에있는 다른 열의 높이를 높이기로 가정 한 것입니다. 불행히도이 코드를 의도 한대로 작동시키지 못했기 때문에 누군가가 나를 도와 줄 수 있기를 바랄뿐입니다.윈도우에서 다시 계산되는 동일한 높이 열
또한 창 크기를 조정할 때마다 열 높이를 다시 계산하고 열의 크기를 조정해야한다고 언급 할 가치가 있습니다.
<script type="text/javascript">
$(document).ready(function(){
//Bind the window onresize event
$(window).bind('resize', resizeWindow);
//Call resizeWindow() function immediately to intiially set elements
resizeWindow();
});
function resizeWindow(){
//Find all the container parent objects
$('.container').each(function(){
//Initialize the height variable
var maxHeight = 0;
//Cache the jQuery object for faster DOM access and performance
var $borders = $(this).find('.border');
//Find all the border child elements within this specific container
$borders.each(function(){
//Get current element's height
var thisHeight = $(this).height();
//Check if the current height is greater than the max height thus far
//If so, change max height to this height
if (thisHeight>maxHeight) maxHeight = thisHeight;
});
//Now that we have the maximum height of the elements,
//set that height for all the .border child elements inside the parent element
$borders.height(maxHeight);
});
}
</script>
<div class="container">
<a href="#" class="border">
<div class="column">
<div class="content">asdf</div>
</div>
</a>
<a href="#" class="border">
<div class="column">
<div class="content">asdf</div>
</div>
</a>
</div>
CSS'columns' 할 수 없습니다 어떤 이유가 있습니까 :
이 바이올린을 시도? –@Kolink 있습니다. 요약 해 볼 때 선택의 여지가 없습니다. – Rich