[css , mixin] 말줄임 - ie 에서만 1줄, 그 외 브라우저 2~3줄
[css , mixin] 말줄임 - ie 에서만 1줄, 그 외 브라우저 2~3줄 .title { //그외 브라우저 @include text-cut(2); //ie 안에선 1줄 @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { @include text-cut; display: block; height: auto; } } //mixin @mixin text-cut($c:"") { @if $c != ""{ overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: $c; /* 라인수 */ -webkit-box-orient: vertic..
© 2018 eh2world