impressivewebs / CSS-Values

A PWA that allows you to search for any CSS property to get a quick reference on possible values and browser support.
https://cssvalues.com
25 stars 4 forks source link

Missing properties. Difference with javascript list. #36

Open rmaslo opened 3 years ago

rmaslo commented 3 years ago

background-position-x ... https://developer.mozilla.org/en-US/docs/Web/CSS/background-position-x background-position-y ... https://developer.mozilla.org/en-US/docs/Web/CSS/background-position-y contain ... https://developer.mozilla.org/en-US/docs/Web/CSS/contain font-variant-alternates ... https://developer.mozilla.org/en-US/docs/Web/CSS/font-variant-alternates max-block-size ... https://developer.mozilla.org/en-US/docs/Web/CSS/max-block-size max-inline-size ... https://developer.mozilla.org/en-US/docs/Web/CSS/max-inline-size min-block-size ... https://developer.mozilla.org/en-US/docs/Web/CSS/min-block-size min-inline-size ... https://developer.mozilla.org/en-US/docs/Web/CSS/min-inline-size ruby-align ... https://developer.mozilla.org/en-US/docs/Web/CSS/ruby-align ruby-position ... https://developer.mozilla.org/en-US/docs/Web/CSS/ruby-position text-decoration-skip-ink ... https://developer.mozilla.org/en-US/docs/Web/CSS/text-decoration-skip-ink text-emphasis-color ... https://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis-color

I run in Firefox console: ret=[]; for (var pp in bd=document.body.style) { if (pp[0] == '-' || pp.toLowerCase()!=pp) continue; ret.push(pp) } ret.sort(); alert(ret.join('\n'))

and create diff width your list.

impressivewebs commented 1 year ago

Sorry for the late response. Yes, there are lots of updates needed. I'll hopefully get to it in the next month or so.

And thanks for the tip on getting the list!