Answers for "9 dots 3 lines in css"

CSS
7

css max one line three dots

span {
    display: inline-block;
    width: 180px;
    white-space: nowrap;
    overflow: hidden !important;
    text-overflow: ellipsis;
}
Posted by: Guest on May-26-2020
0

paragraph dots after 2 lines css

display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
Posted by: Guest on August-25-2021

Browse Popular Code Answers by Language