.wrapper {
font-size: 0;
white-space: nowrap;
overflow: hidden;
}
.test2 {
width: calc(100% - 2 * 100px - 2 * 5px); /* 100% - left - right - marginLeft - marginRight */
margin: 0 5px;
overflow: hidden;
text-overflow: ellipsis;
}
.promo .promo__wrapper {
text-align: center;
}.promo__wrapper {
text-align: center;
}
(function ($) {
var $container = $(".masonry-container");
$container.imagesLoaded(function () {
$container.masonry({
columnWidth: ".card",
itemSelector: ".card"
});
});
$(".more").click(function () {
$(this).siblings(".moreDetal").toggle(0);
$container.masonry("layout");
});
})(jQuery);