我正在尝试为席卡提供自定义边框,但我无法做到这一点。我正在使用ng-deep设置席卡的样式。我能够获得带有边框半径但没有颜色的圆形边框边框可见。我不知道我要缺少什么。请帮忙。谢谢。
下面是我的CSS:
::ng-deep .mat-card{
border: 55px !important;
border-radius: 30px !important;
border: #000 !important;
}
答案 0 :(得分:2)
您遇到CSS问题,
您正在设置border: 55px !important;
,然后用border: #000 !important;
覆盖它。
您应该使用:border: 55px solid #000