I, uh, hate that radius calculation. Why does the radius need to be reactive? What do you stand to gain over just setting to like 3 or 4px and moving on with your life?
Junior webdev points.
Cool. Help me learn then by answering my questions.
He did
[…] Why does the radius need to be reactive? What do you stand to gain over just setting to like 3 or 4px and moving on with your life?
Junior webdev points
AKA you gain nothing.
Oof, I might have wooshed there. Totally read that comment as criticizing my inquiry as things a Jr would ask and not as the implementation being “look what I as a Jr can do!”
HTML tends to absorb all its best kludges. I put off learning JQuery for so long that the features I wanted became standard.
I like that css now has variables, but why that syntax?
I think to make sure they don’t clash with existing identifiers
I could understand declaring with
--foo
, but then referencing should be eithervar(foo)
or just--foo
, not the combinationvar(--foo)
. I don’t get why the grammar has to work that way.