我在按钮上遇到border-top-left-radius
和border-bottom-left-radius
时遇到问题,这些按钮似乎在开发版本中有效,但在生产中无效。当我运行ng serve
时,会得到预期的结果:
如果我只是使用ng serve --prod
运行相同的项目,我会得到:
...在开发人员工具中存在一些错误:
很显然,构建系统做得不好。样式未正确部署,因此无法正常工作。 Angular 6和Angular 7均可轻松重现这一点。
ng new test-app
在app.component.html中添加按钮
将CSS添加到app.component.css
.rounded-circle { border-radius:50px!important; border-top-left-radius:0!important; border-bottom-left-radius:0!important; }
我也使用了Bootstrap,但是没有必要重现此内容。
我明显缺少什么吗?