File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
.body {
2
- word-wrap : break-word ; /* aka overflow-wrap; used when hyphens are disabled or don 't do the trick */
2
+ word-wrap : anywhere ; /* aka overflow-wrap; used when hyphens are disabled or aren 't sufficient */
3
3
}
4
4
5
5
@media screen and (min-width : 1024px ) {
Original file line number Diff line number Diff line change 180
180
/* enable table-layout: fixed if you want the table width to be enforced strictly */
181
181
/* alternative is to wrap table in div and set overflow-x: auto on the wrapper */
182
182
/* table-layout: fixed; */
183
+ word-wrap : normal; /* don't do arbitrary word breaking */
184
+ display : block;
185
+ overflow-x : auto;
186
+ max-width : 100% ;
183
187
}
184
188
185
189
.doc table .stretch {
655
659
.doc .icon i ::after {
656
660
hyphens : none;
657
661
}
658
-
659
- .doc th .tableblock ,
660
- .doc td .tableblock {
661
- word-break : break-word; /* overflow-wrap for table cells; gives space higher precedence than hyphen opportunity */
662
- }
Original file line number Diff line number Diff line change 14
14
position : fixed;
15
15
top : 0 ;
16
16
width : 100% ;
17
- word-wrap : break-word;
18
17
z-index : var (--z-index-navbar );
19
18
}
20
19
You can’t perform that action at this time.
0 commit comments