My site is currently pretty simple, but it still uses enough CSS that some parts of it look really bad in a browser like Links2 that doesn’t support CSS. Most of what i’m doing with CSS can be done with plain HTML, it just doesn’t look as good.

Is there a way to make a page try to load normally with CSS and whatnot, and then only load a simpler version with everything done in tables if the normal version can’t load? Is my best option here to make normal and simple versions of every page?

  • IndigoGolem@lemmy.worldOP
    link
    fedilink
    arrow-up
    1
    ·
    23 days ago

    It seems there’s no CSS equivalent to noscript, but what i can do is put the CSS version of a page inside a <div hidden style=“display:block”>, and the non-CSS version in a <div style=“display:none”>. But this doubles the size of a page so i don’t like doing it.