Limit characters displayed in span

后端 未结 7 2246
清歌不尽
清歌不尽 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条回答
  • 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;
    }
    
    0 讨论(0)
提交回复
热议问题