如何解决覆盖 ng-bootstrap datepicker select.style
我正在使用 ng-bootstrap datepicker 并且在选择样式的月份和年份时遇到问题
问题在于选择样式。
select[_ngcontent-c21] {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 0 .5rem; // the problem in this line
在 Html 中,我有这样的:
我觉得解决这个问题就是让padding 0.0rem
但我无法覆盖这种样式。
解决方法
您可以通过在要覆盖的样式值后添加 !important 来覆盖每个引导程序样式。
示例引导样式覆盖:
.signup-form .btn:hover,.signup-form .btn:focus {
background: #179b81 !important;
}
在你的情况下尝试:
select[_ngcontent-c21] {
-ms-flex: 1 1 auto;
flex: 1 1 auto;
padding: 0 rem !important;
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。