I am Using Angular UI Grid . I am not able to use word wrap in my table cell. Can somebody help me regarding this
1 Answer
If you override the text-overflow property using clip you can remove the ellipses without overflowing the text.
.ui-grid-header-cell .ui-grid-cell-contents {
height: 90px;
-ms-text-overflow: clip;
-o-text-overflow: clip;
text-overflow: clip;
}
Note, you can also disable the v with
.ui-grid-icon-angle-down::before {
content: none;
}