[Solved] start value has mixed support, consider using flex-start instead
I updated the code as below
In my case i was using justify-content: start;
property instead justify-content: flex-start;
using flex-start value solved it!
**Earlier: ** -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; **align-items: start;
**
Solution : -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; -webkit-box-align: start; -ms-flex-align: start; **align-items: flex-start;
**
Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.
Yes17
No5