首页 > 解决方案 > 有没有办法使用 ngx-translate 翻译 css 选择器(::after, ::before) 内容?

问题描述

有没有办法使用 ngx-translate 翻译 css selectors(::after, ::before) 内容?

.custom-file-label::after {
    content: "Browse"
}

标签: angularinternationalizationtranslateangular-translatengx-translate

解决方案


在html中添加

 <div class="custom-file-label" [attr.your-custom] = "{{ 'Browse' | translate}}"></div>

在CSS中

.custom-file-label::after { 
        content: attr(your-custom);
 }

推荐阅读