Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
<div style="display:table-cell;">
<div style="display:table-row">
<div style="display:table-cell;background:red">column 1</div>
<div style="display:table-cell;background:blue">column 2</div>
<div style="display:table-cell;background:green">column 2</div>
</div>
</div>
<script type="text/javascript">
function set_min_height(){
var elements = jQuery('li.product .inner-product-content');
var number_in_line = 3;
for (var i = 0; i < elements.length; i = i+number_in_line) {
var elements_row = elements.slice(i, i+number_in_line);
var height = 0;
elements_row.each(function(){
height = Math.max(height, jQuery(this).height());
}).css('min-height', height);
}
}
jQuery(window).load(set_min_height).resize(set_min_height);
</script>