Override width: force scrollbar

This commit is contained in:
M66B 2022-08-11 14:35:39 +02:00
parent 2e47911e99
commit 10dd18a16a
1 changed files with 1 additions and 1 deletions

View File

@ -2413,7 +2413,7 @@ public class HtmlHelper {
StringBuilder sb = new StringBuilder();
sb.append("<style type=\"text/css\">");
for (String tag : tags)
sb.append(tag).append("{width: auto !important; min-width: 0 !important;max-width: 100% !important;}");
sb.append(tag).append("{width: auto !important; min-width: 0 !important; max-width: 100% !important; overflow: auto !important;}");
sb.append("</style>");
document.select("head").append(sb.toString());