Bootstrap-table: column width not work when cell data is too long

Created on 18 May 2016  路  3Comments  路  Source: wenzhixin/bootstrap-table

I set column width with percentage , but it not work when cell data is long,example is here:
https://jsfiddle.net/robin1987/dz1y6kkg/

Most helpful comment

@tianyaxue - css issue, nothing to do with that width option as a quick F12 and inspect shows it does just that

Off top of my head i went through css rules that might affect content wrapping, nothing changed till I used word-break: break-word;, thats the magic word it seems in this case

Next time, use basic debug (F12) and then search for underlying issue on google, that same title you show here, "column width not work when cell data is too long", has a bunch of useful hits

For referance:

td, th {
    /* NOTE - didnt work */
    /*
    word-wrap: break-word!important;
    overflow-wrap: break-word!important;
    overflow: hidden!important;
    white-space: normal!important;
    */
    /* NOTE - did work */
    word-break: break-word;
}

All 3 comments

@tianyaxue - css issue, nothing to do with that width option as a quick F12 and inspect shows it does just that

Off top of my head i went through css rules that might affect content wrapping, nothing changed till I used word-break: break-word;, thats the magic word it seems in this case

Next time, use basic debug (F12) and then search for underlying issue on google, that same title you show here, "column width not work when cell data is too long", has a bunch of useful hits

For referance:

td, th {
    /* NOTE - didnt work */
    /*
    word-wrap: break-word!important;
    overflow-wrap: break-word!important;
    overflow: hidden!important;
    white-space: normal!important;
    */
    /* NOTE - did work */
    word-break: break-word;
}

@dabros thks,it's work.

@dabros very well man

Was this page helpful?
0 / 5 - 0 ratings

Related issues

hello-code picture hello-code  路  29Comments

gadget00 picture gadget00  路  16Comments

btran1802 picture btran1802  路  30Comments

simkeyur picture simkeyur  路  19Comments

cgountanis picture cgountanis  路  14Comments