我在XML文件中有以下内容
<Button id="note" text="" tap="onNote" class="my-note" />
在css文件中,我有:
按钮[class =&#39; my-note&#39;] {font-family:&#39; FontAwesome&#39 ;; }
这似乎不起作用 - 但是id选择器确实有效。
按钮[id =&#39; note&#39;] {}
答案 0 :(得分:1)
button.my-note {font-family: 'FontAwesome'; }
这适合我。