Tobias Buschor
Tobias Buschor
Has anyone tried my polyfill? https://github.com/nuxodin/ie11CustomProperties
I created "norm.css" and "base.css" that I keep updated. **norm.css:** just crossbrowser normalisation, no opinionated styles. https://github.com/u1ui/norm.css **base.css:** usefull defaults: https://github.com/u1ui/base.css I would appreciate a little more community. Also listed...
Do you have a link to the spec? I can't find anything regarding css overflow.
This is also an option, but I dont think its always the better one. In most cases I want `box-sizing:border-box`. But there is also the situation that I want `content-box`...
With css variables you could have the advantages of both variants, but maybe that's too mutch overhead. ```css html { --box-sizing:border-box; } *, ::before, ::after { box-sizing: var(--box-sizing); } .elementNeedsContentBox...
Would it be bad if "input text", "select", etc. also had pointer cursors? And if so, you could override it on those: ```css label { cursor:pointer } select, :not([type=checkbox]), :not([type=radio])...
Like the Idea! I always think that the behaviour of custom properties should (possibly) not differ from normal properties. That's why I'm throwing these lines into the room: ```css .el...
It does what a native dialogue would do on supported browsers, with a fallback for those that are not supported. Is your objection that the polyfill does not work the...
Sorry, I have no free resources at the moment.