amorfati0310 / TipBooks

Tip Books
1 stars 0 forks source link

[CSS] text 넘어가는 ...처리 text-overflow: elipcis #6

Open amorfati0310 opened 3 years ago

amorfati0310 commented 3 years ago
//ex) 4줄짜리 
   &__description {
 font-size: 15px;
        line-height: 23px;
        color: $gray-800;
        height: 92px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        word-wrap: break-word;
        margin: 0;
        &--isExpanded {
            height: auto;
            text-overflow: unset;
            display: flex;
            overflow: inherit;
        }
}