We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7580bfb commit 41099e4Copy full SHA for 41099e4
src/css/doc.css
@@ -187,11 +187,14 @@
187
margin: 2rem 0;
188
/* enable table-layout: fixed if you want the table width to be enforced strictly */
189
/* alternative is to wrap table in div and set overflow-x: auto on the wrapper */
190
+ /* another alternative is to set overflow-x: auto and display: block on table (but this breaks table borders) */
191
/* table-layout: fixed; */
192
word-wrap: normal; /* don't do arbitrary word breaking */
193
+ /*
194
display: block;
195
overflow-x: auto;
196
max-width: 100%;
197
+ */
198
}
199
200
.doc table.tableblock th,
0 commit comments