【发布时间】:2021-12-16 21:13:47
【问题描述】:
有没有办法使用 ngx-translate 翻译 css 选择器(::after, ::before) 内容?
.custom-file-label::after {
content: "Browse"
}
【问题讨论】:
标签: angular internationalization translate angular-translate ngx-translate
有没有办法使用 ngx-translate 翻译 css 选择器(::after, ::before) 内容?
.custom-file-label::after {
content: "Browse"
}
【问题讨论】:
标签: angular internationalization translate angular-translate ngx-translate
在html中添加
<div class="custom-file-label" [attr.your-custom] = "{{ 'Browse' | translate}}"></div>
在css中
.custom-file-label::after {
content: attr(your-custom);
}
【讨论】: