Skip to content

Instantly share code, notes, and snippets.

@JoeyBurzynski
Last active April 10, 2024 20:23
Show Gist options
  • Save JoeyBurzynski/617fb6201335779f8424ad9528b72c41 to your computer and use it in GitHub Desktop.
Save JoeyBurzynski/617fb6201335779f8424ad9528b72c41 to your computer and use it in GitHub Desktop.
58 bytes of css to look great nearly everywhere

58 bytes of CSS to look great nearly everywhere

When making this website, i wanted a simple, reasonable way to make it look good on most displays. Not counting any minimization techniques, the following 58 bytes worked well for me:

main {
  max-width: 38rem;
  padding: 2rem;
  margin: auto;
}

let's break this down:

max-width: 38rem

it appears that the default font size for most browsers is 16px, so 38rem is 608px. supporting 600px displays at a minimum seems reasonable.

padding: 2rem

if the display's width goes under 38rem, then this padding keeps things looking pretty good until around 256px. while this may seem optional, it actually hits two birds with one stone - the padding also provides sorely-needed top and bottom whitespace.

margin: auto

this is really all that is needed to center the page, because main is a block element under semantic html5.

a key insight: it took me a surprising number of iterations to arrive at this point. perhaps that speaks to the fact that i know nothing about "modern" web development, or, as i'm more inclined to believe, just how hard it is to keep it simple in a world of complication.

update 1: following some discussion, I've since changed the padding to 1.5rem for a happier compromise between mobile and desktop displays.

update 2: the ch unit was brought to my attention, and I quite like it! I've since changed to 70ch/2ch, which looks nearly the same with 2 less bytes, except that the padding is a little bit smaller (a good thing for mobile).

100 Bytes of CSS to look great everywhere (enhanced version)

This should be simple drop-in css to look good on most displays:

html {
  max-width: 70ch;
  padding: 3em 1em;
  margin: auto;
  line-height: 1.75;
  font-size: 1.25em;
}

Let's break this down. I've adapted the original text with my own commentary.

max-width: 70ch

the "readable range" is usually 60-80 character widths, and CSS lets you express that directly with the ch unit.

padding: 3em 1em

If the display's width goes under the max-width set above, then this padding prevents edge-to-edge text on mobile. We use 3em to provide top/bottom whitespace.

margin: auto

This is really all that is needed to center the page - applied on html, because Dan's site doesnt have a semantic

tag and is more likely to exist in most sites. That the top tag centers itself relative to nothing is unintuitive, but thats how browsers do.

line-height: 1.75

Spacing between the lines to help increase visual clarity. Always leave line height unitless because reasons.

font-size: 1.5em

I've noticed that recent design trends and screen sizes have tended toward bigger font sizes. Or maybe I'm getting old. Prefer em or rem over px if you want to let users scale it.

You can use :root instead of <html> to guarantee that there is some selector present, but its a touch too fancy for me and uses an extra character :)

Optional 100 more bytes

h1,h2,h3,h4,h5,h6 {
  margin: 3em 0 1em;
}

p,ul,ol {
  margin-bottom: 2em;
  color: #1d1d1d;
  font-family: sans-serif;
}

References

@beeb
Copy link

beeb commented Sep 28, 2022

cool, that's 40 bytes. With line height that's 56 bytes.

html{margin:2rem max(2rem,50% - 19rem);line-height:1.6}

However, it does not work in obscure browsers like Netsurf. For this kind of optimization I do believe that you would want that.

Here is a breakdown of the browser support (94.32% coverage): https://caniuse.com/css-math-functions

@FrameMuse
Copy link

FrameMuse commented Oct 2, 2022

Talking about colors, I always use #333, it still black but less ^_^. It works nice on windows on all modern browsers (didn't test it on every device though). It's more about psychology (interception), just how you see colors - less darker colors make it matte and softer for eyes.

I saw a servey a long ago about this, can't really give a link, sorry.

@antics
Copy link

antics commented Oct 2, 2022

Here is a breakdown of the browser support (94.32% coverage): https://caniuse.com/css-math-functions

Sure, but Netsurf and, I believe, other obscure browsers for older gaming handhelds and such does not support css math functions.

I'm just saying that when we are discussing these kinds of optimizations, would we not want to make it accessible to obscure and older connected devices as well?

Edit: You can see the result of html{margin:0 auto;max-width:80ch;line-height:1.6} here: https://chai.guru/www/

@Akul2010
Copy link

Akul2010 commented Oct 3, 2022

Here is a breakdown of the browser support (94.32% coverage): https://caniuse.com/css-math-functions

Sure, but Netsurf and, I believe, other obscure browsers for older gaming handhelds and such does not support css math functions.

I'm just saying that when we are discussing these kinds of optimizations, would we not want to make it accessible to obscure and older connected devices as well?

Edit: You can see the result of html{margin:0 auto;max-width:80ch;line-height:1.6} here: https://chai.guru/www/

Honestly, I am very sure that literally, everyone in the world uses either chrome, edge, duckduckgo, baidu, or safari. And if they don't, then that is their problem, because I'm pretty sure no dev makes a high-quality website with every single browser in mind - that would be impossible without a huge amount of complexity. (emphasis on huge)

@justingolden21
Copy link

@adriangrigore
Copy link

Created a themes for my static site generator based on this: https://t.mkws.sh/58bytes!

@TimDaub
Copy link

TimDaub commented Nov 8, 2022

I sadly have to disagree that this looks good on all devices. The text on my iPhone is too small.

signal-2022-11-08-104910_002

@TimDaub
Copy link

TimDaub commented Nov 18, 2022

I just re-launched my blog with the tricks from this gist. Thanks for all the tips: https://proofinprogress.com

@heymatthew
Copy link

heymatthew commented Feb 21, 2023

@TimDaub for mobile to scale properly (ala looks tiny on ios), you want to jam this in your <head>

<head>
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>

@sumon1068
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment