function setEqualWidth(columns) {
var tallestcolumn = 0;
columns.each(function () {
currentWidth = $(this).width();
if (currentWidth > tallestcolumn) {
tallestcolumn = currentWidth;
}
});
columns.width(tallestcolumn);
}
setEqualWidth($('button'));
background-size: 100%
Как сделать Слайдер размером скажем в 70%, контент 130%, футер 100%; //без js, и vh
.case-parameters(@cn) {
.block-case li:nth-of-type(@{cn}):before {
font-weight: bold;
z-index: 1;
position: absolute;
margin-top: 35px;
background: #fff;
color: #FC0D55;
font-size: 20px;
content: "текст";
width: 80px;
height: 27px;
display: block;
line-height: 25px;
text-indent: 10px;
}
}