Content
View differences
Updated by Robin Wagner over 8 years ago
The wiki preview renders content so that it will overflow, with any exceeding content being hidden.
This is due to the fact that the, chrome/chromium/webkit, browser’s default stylesheet defines a **min-width: -webkit-min-content**.
Overriding this as so
.preview {
min-width: 100%;
}
will create a preview of the page that will not overflow.
See screenshots before and after for a comparison.
This is due to the fact that the, chrome/chromium/webkit, browser’s default stylesheet defines a **min-width: -webkit-min-content**.
Overriding this as so
.preview {
min-width: 100%;
}
will create a preview of the page that will not overflow.
See screenshots before and after for a comparison.