jonjohnjohnson
jonjohnjohnson
Running Firefox 45.0.1 seems to not need the min-width. If I just add `overflow: hidden` to the images containing div, it works perfectly. The issue is that the default `flex-direction`...
Looks like it's not related to the `calc` unit, and it's related to the height of any of the flex children being set as a percentage of the parent which...
After reading @AmeliaBR thoughts on `!add` I'm just gonna throw this out there... Would a special keyword for the accessing the current value in the cascade, similar to `currentColor`, be...
@FremyCompany I was thinking the `currentValue` could be retrieved within the context it was used, such as the value of a grayscale function, as well as the whole value of...
Since custom properties cannot be set with references to their own inherited value, except in quite round about ways... ```html body { --mag: 0em; /* initial value */ --plus: 1em;...
I had to write something like this today, overspecifying and repeating myself, explicitly accounting for all possible permutations of combined counter incrementing utilities. ```css .ut-count-1 { counter-increment: utCount1; } .ut-count-2...
I don't think I understand the reasoning for not just specifying `appearance: none` on `` as simply removing the layout "magic" and turning off the replaced element behavior? Affording a...
@SimplyPhy was going to comment and say safari just needed prefix for sticky, but now I see you updated your comment. Though safari still has an issue 'sticking' your `td:first-child...
@natematykiewicz though not ideal, I believe all current browser versions support sticky behavior if you alter your DOM structure so that the scrolling element is inside the body/html, filling out...
@natematykiewicz The computed values of both `overflow-x` & `overflow-y` are... > as specified, except with` visible` computing to `auto` if one of `overflow-x` or `overflow-y` is not `visible` - [css-overflow-3/#overflow-properties](https://www.w3.org/TR/css-overflow-3/#overflow-properties)...