0

I am Using Angular UI Grid . I am not able to use word wrap in my table cell. Can somebody help me regarding this

UI Grid

2

1 Answer 1

1

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;
}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.