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
  • 307,417
  • 93
  • 525
  • 644
Jochen Kühner
  • 1,343
  • 1
  • 17
  • 40

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,602
  • 2
  • 17
  • 29