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

Add IE prefixes for css grid [help wanted] #336

Open
RT-TL opened this issue Jul 2, 2018 · 0 comments
Open

Add IE prefixes for css grid [help wanted] #336

RT-TL opened this issue Jul 2, 2018 · 0 comments

Comments

@RT-TL
Copy link

RT-TL commented Jul 2, 2018

I am currently using a grid layout for my react app. The internet explorer only supports grid partially and only in newer versions. This is fine for me but I realized that grid-attributes are not prefixed, e.g.:

const styles = StyleSheet.create({ contentFrame: { display: 'grid', } });

is translated into

display: grid;

instead of

display: grid; display: -ms-grid;

I wonder if this is because Aphrodite only prefixes according to a lower version of the IE (9, I believe). If so, is there a way to influence the version? If not, what would be the best approach in case I stick with grid layouts & Aphrodite styles?

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

1 participant