vue项目运行报错:end value has mixed support, consider using flex-end instead
Vue
2023-08-09 22:05:45
vue项目中使用flex属性后,项目报错:end value has mixed support, consider using flex-end instead
截图效果如下:
问题解决办法:
1、end value has mixed support
justify-content:end
改为
justify-content:flex-end
2、start value has mixed support
justify-content:start
改为
justify-content:flex-start
在早期版本的草案[1]当中有这俩值(start,end),后续被废弃了[2],并且属性名从flex-pack 变更为了 justify-content,但浏览器还是会因为历史原因保留这两个属性的支持。

886篇文章
2946人已阅读