.line-clamp
{
display : block;
display : -webkit-box;
-webkit-box-orient : vertical;
position : relative;
line-height : 1.2;
overflow : hidden;
text-overflow : ellipsis;
padding : 0 !important;
}
.line-clamp:after
{
content : '...';
text-align : right;
bottom : 0;
right : 0;
width : 25%;
display : block;
position : absolute;
height : calc(1em * 1.2);
background : linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 75%);
}
@supports (-webkit-line-clamp: 1)
{
.line-clamp:after
{
display : none !important;
}
}
.line-clamp-5
{
-webkit-line-clamp : 2;
height : calc(1em * 1.2 * 2);
}
.line-clamp{
line-height : 1.2;
}
이 부분 적당히 조절해가면서 사용
'공부 > HTML|CSS' 카테고리의 다른 글
HTML 코드 암호화하기 (0) | 2022.01.19 |
---|---|
API 없이 인스타그램 HTML (by TagName) (1) | 2020.07.15 |
WIX로 숫자 카운트 업 효과 적용하기 (1) | 2019.08.25 |
체크박스 / 라디오 배경 변경, 꾸미기 (0) | 2019.08.12 |
순수 HTML/CSS Carousel (0) | 2019.04.11 |