Limit characters displayed in span

后端 未结 7 2295
清歌不尽
清歌不尽 2020-12-13 06:36

Is there some sort of way within HTML or CSS to limit the characters displayed with a span? I use a repeater that displays these info boxes and I want to limit the character

7条回答
  •  -上瘾入骨i
    2020-12-13 07:23

    max-length is used for input elements. Use text-overflow property of CSS.

    .claimedRight {
        display:block; width: 250px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    

提交回复
热议问题