1

I've a Button which uses Flexbox inside for Layout. This works perfectly in Chrome and Edge.

enter image description here

In Firefox it looks like this:

enter image description here

Michael Benjamin
  • 346,931
  • 104
  • 581
  • 701
Jochen Kühner
  • 1,385
  • 2
  • 18
  • 43

1 Answers1

0

In some broswers rather than using things like: display: flex; you need to use: display: -webkit-flex;

There are other workarounds which you can get from Google but I use css-tricks for specific areas I am unsure on.

I had this exact issue some time ago, webkit extensions will work fine. You can add it above, below display: flex; and it won't conflict.

UPDATED: For firefox try adding: display: -moz-box;

Option
  • 2,605
  • 2
  • 19
  • 29