CSS 选择器在 {N} 中不起作用
CSS selector not working in {N}
我在 XML 文件中有以下内容
<Button id="note" text="" tap="onNote" class="my-note" />
在 css 文件中,我有:
按钮[class='my-note'] {字体系列:'FontAwesome'; }
这似乎不起作用 - 但 id 选择器确实起作用。
按钮[id='note']{}
button.my-note {font-family: 'FontAwesome'; }
这对我有用。
我在 XML 文件中有以下内容
<Button id="note" text="" tap="onNote" class="my-note" />
在 css 文件中,我有:
按钮[class='my-note'] {字体系列:'FontAwesome'; }
这似乎不起作用 - 但 id 选择器确实起作用。
按钮[id='note']{}
button.my-note {font-family: 'FontAwesome'; }
这对我有用。