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

Mention Compatibility #12

Open
james2doyle opened this issue Mar 14, 2013 · 1 comment
Open

Mention Compatibility #12

james2doyle opened this issue Mar 14, 2013 · 1 comment

Comments

@james2doyle
Copy link

Perhaps I missed it, but there is nothing pointing out the fact that this uses box-sizing, which some browsers don't support.

Maybe there should be a section listing the browser versions supporting this?

CanIUse.com table

@larsbo
Copy link

larsbo commented Mar 16, 2013

another problem is that

*, *:after, *:before

affect all elements, for example it changed the height of input fields.

you can add

input {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

to fix this but maybe there is a better solution?

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