I am studying using Twitter Bootstrap (with some settings) to restore a site.
One problem is scaling pages and text in Webkit browsers like Chrome and Safari. When scaling, they do not reinstall the text on the screen. Instead, the text continues from a page that requires horizontal scrolling.
As an example, compare the scaling of text on the Bootstrap home page in Chrome / Safari and Firefox - in Firefox, even in the flexible menu bar, it works correctly when there is not enough space for menu text due to scaling.
This is apparently a well-known Webkit feature with pixel-based layouts that can be solved using em-based widths, which seems impractical with standard Bootstrap (too much to change and support).
So, is there a Bootstrap derivative around which em-based width is used, or is there a way to add a css snippet, etc., to get around the problem? This is the only thing that prevents me from using Bootstrap in this project. I want the site to be accessible to lower vision users who often increase.
It would be nice if Webkit corrected the error / function to behave like other browser mechanisms, but I do not see that this will happen in the near future, unfortunately.
[update] Just to be clear, this is a complete similar action for Firefox that I perform: text scaling remains limited in columns, and media queries realize screen space limited when text is enlarged, and adjust the menu and number of columns respectively. Fluid layouts help with limiting the body of the article, but menus and sidebars are still messy in Chrome / Safari when scaling.
source
share