0

如何为 routerLink 设置不同的颜色,在 Chrome 上,它的白色与背景相同,因此它的文本不可见。

 <div class="slds-truncate " style="width: 45ch;overflow: hidden;">
                    <span title={{form.title}}><a routerLink="/form/{{form.id}}/edit"  routerLinkActive="router-link-active" >{{form.title}}</a></span>
     </div>
4

1 回答 1

1

通过设置style="color: #0070d2"解决

 <div class="slds-truncate " style="width: 45ch;overflow: hidden;">
                    <span title={{form.title}}><a routerLink="/form/{{form.id}}/edit"  routerLinkActive="router-link-active" style="color: #0070d2">{{form.title}}</a></span>
     </div>
于 2019-02-04T08:56:16.010 回答