Jen Simmons
Jen Simmons
I've been meaning to put some time into investigating what's up with Codekit and Jekyll. I just haven't had a chance. So I'm opening this super-lame "issue" to say, uh,...
Why don't people use `` far more — instead of divs in their forms? Perhaps it's because `fieldset` comes with ugly default styling. Maybe we should remove it? ``` fieldset...
I wrote ``` /* Stop any animation if the user has set their device to "prefers reduced motion". */ @media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none...
Do we want to include something like: ``` html, body { height: 100%; } ``` or ``` html, body { min-height: 100vh; } ``` ??? to keep the page from...
I'm in the middle of something... and tripped down multiple rabbit holes that brought me to this: ``` sub { font-variant-position: sub; } sup { font-variant-position: sup; } ``` The...
This is supposed to be implemented in UA styles: https://www.w3.org/TR/css-text-decor-3/#default-stylesheet and it's not. So we can.
In Reboot, the base file for Bootstrap, they have this: ``` // Suppress the focus outline on elements that cannot be accessed via keyboard. // This prevents an unwanted focus...
From Reboot (Bootstrap's) and Normalize: ``` /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box;...
https://twitter.com/jensimmons/status/1082396940237750272
How finished are the specifications for these features? From Color 5: - color-contrast() - color-mix() - Relative Color Syntax From Images 4: - Non-sRGB interpolation of CSS Gradients They are...