List Overflow; Do Text-overflow: Ellipsis;
What am I doing wrong with text-overflow: ellipsis on my list element? Full html code: Seth J.
Solution 1:
I think you need to set some additional properties on your li in order to cause the overflow condition:
.projectSectionContent li {
overflow: hidden;
white-space: nowrap;
max-width: 100px;
max-height: 1.5em;
text-overflow: ellipsis;
}
Post a Comment for "List Overflow; Do Text-overflow: Ellipsis;"