Answers for "can i assign text-overflow: ellipsis; to width in percentage div"

CSS
0

css text elipsis after width

.truncate {
	width: 170px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
Posted by: Guest on September-13-2021

Code answers related to "can i assign text-overflow: ellipsis; to width in percentage div"

Browse Popular Code Answers by Language