how to avoid text overflow in twitter bootstrap?

后端 未结 4 614
無奈伤痛
無奈伤痛 2021-02-05 01:57

I\'m new to Twitter Bootstrap. I wrote following HTML:

@Html.ActionLink(item.Name
4条回答
  •  梦毁少年i
    2021-02-05 02:10

    make the html structure like this...

    @Html.ActionLink(item.Name, "Details", new { id = item.Id }, new { @class = "JumpLinks", @style = "font-size:13px;font-weight:bold;" })

    The CSS:-

    .hideOverflow
    {
        overflow:hidden;
        white-space:nowrap;
        text-overflow:ellipsis;
        width:100%;
        display:block;
    }
    

提交回复
热议问题