任何人都可以帮助我如何将 CSS 用于 ng2-smart-table 组件?
我喜欢自定义分页、标题、标题、正文
在此先感谢安德里亚
在设置对象中使用以下配置
attr: {
class: 'table table-bordered'
}, //this is for getting default table class
和
:host /deep/ ng2-smart-table {
font-size: 16px;
}//this for custom css
例子 :
settings = {
columns: {
id: {
title: 'ID'
},
name: {
title: 'Full Name'
},
username: {
title: 'User Name'
},
email: {
title: 'Email'
}
},
attr: {
class: 'table table-bordered'
}
};