Does CSS text-overflow: ellipsis work on Anchor tags?

Viewed 16368

Why does the following CSS not work?

a {
    width: 60px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
3 Answers
Related