我尝试在控件按钮顺序列表中添加工具提示
我的组件
Component({
selector: 'app-block',
templateUrl: './block.component.html',
styleUrls: ['./block.component.css'],
styles:[`
button[icon="pi pi-angle-double-up"] {
/* what should I write here */
}
`],
encapsulation: ViewEncapsulation.None
})
那么,有没有其他方法向我想要的按钮添加工具提示,或者使用css的正确方法是什么?
1条答案
按热度按时间agyaoht71#
您需要自定义block.component.html和block.component.css,如下所示: