Answers for "what is the meaning or use of an ellipsis"

CSS
0

ellipsis

p{
    display: -webkit-box;
    max-width: 100%;
    height: 43px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
Posted by: Guest on January-20-2022

Code answers related to "what is the meaning or use of an ellipsis"

Browse Popular Code Answers by Language