Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing properties. Difference with javascript list. #36

Open
rmaslo opened this issue Jun 17, 2021 · 1 comment
Open

Missing properties. Difference with javascript list. #36

rmaslo opened this issue Jun 17, 2021 · 1 comment

Comments

@rmaslo
Copy link

rmaslo commented Jun 17, 2021

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
Copy link
Owner

impressivewebs commented Mar 1, 2023

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!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants