Answers for "three dots after 2 lines css"

CSS
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
0

3 line after dot in css

p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
Posted by: Guest on June-05-2021

Browse Popular Code Answers by Language