Wrap the Table text

in print, I am trying to Wrap the text to next line, using css
I am using below code , but it is not working,

.k-grid-content.k-auto-scrollable td {
     text-align: center !important;
    word-wrap: break-word;
    font-size:12px;
        overflow: visible;
}
.k-grid-content.k-auto-scrollable th {
    text-align: center !important;
    word-wrap: break-word;
    font-size:12px;
        overflow: visible;
}```

Hello @sanaullah102,

You can add this CSS to enable wrapping of the table headers:

.k-grid  .k-grid-header  .k-header  .k-link {
    height: auto;
}
  
.k-grid  .k-grid-header  .k-header {
    white-space: normal;
}

Thanks , Its works for me

1 Like