We are developing an open source web application for art teachers around the world to collaborate on. We need a good website that is simply customizable based on the active browser width, for example google.org or barackobama.com. It's good.
We can detect the browser, OS, etc., but do not want to use any information. We just need four or five different stylesheets that start when you adjust the width of the browser.
So, for example, when you visit an application in a browser using a DESKTOP computer, you see the full application when the browser is in full screen mode. Then, when the browser reduces its width, the site immediately and dynamically changes its format to provide universal compatibility.
We don’t want our CSS to change depending on the type of browser or the original width, but instead it should adjust every millisecond based on the current width of the viewport - whether it’s a “mobile” device or a “tablet” or “desktop” "browser.
Curiously, I use Google Apps Script to host our web application, so it looks like the meta widget tags are removed.
How can we enter four or five different stylesheets based on the width of the current browser window?
javascript html css browser google-apps-script
Sean mcgowan
source share