Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[버그] XTable 스크롤 및 리사이징 깨지는 현상 #57

Closed
seogi1004 opened this issue Aug 12, 2014 · 0 comments
Closed

[버그] XTable 스크롤 및 리사이징 깨지는 현상 #57

seogi1004 opened this issue Aug 12, 2014 · 0 comments
Assignees
Labels

Comments

@seogi1004
Copy link
Collaborator

해당 문제가 발생하는 현상은 아래와 같은 경우...

  1. border-collapse 스타일이 collapse인 경우
  2. th의 크기를 설정했을 때, 테이블의 가로보다 큰 경우
  3. th와 td의 text-overflow 처리를 안했을 경우

아래는 이와 같은 문제를 해결할 수 있는 스타일

.xtable table {
table-layout: fixed;
border-spacing: 0;
border-collapse: inherit;
}
.xtable th {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.xtable td {
word-break: break-all;
}

@seogi1004 seogi1004 added the bug label Aug 12, 2014
@seogi1004 seogi1004 added this to the 1.3.0 milestone Oct 27, 2014
@seogi1004 seogi1004 self-assigned this Oct 27, 2014
@seogi1004 seogi1004 modified the milestones: 1.2.2, 1.3.0 Nov 24, 2014
@seogi1004 seogi1004 modified the milestone: 1.2.2 Dec 12, 2014
@seogi1004 seogi1004 modified the milestone: 1.3.7 Jul 1, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant