覆盖 Flex 控件的标签级外部 CSS
我有一个外部 CSS 文件,它定义了 Button 标签的样式。
Button {fontSize 11; blah...}
我试图覆盖 ToggleButtonBar 按钮的这种样式:
<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" fontSize="16" />
不幸的是,这似乎不起作用。 fontSize 保持在 11。如何覆盖外部 CSS 来调整 ButtonBar 中按钮的大小?
谢谢!
I have an external CSS file which defines the style for the Button tag.
Button {fontSize 11; blah...}
I'm trying to override this style for the buttons of a ToggleButtonBar:
<mx:ToggleButtonBar dataProvider="{pm.portalNavigation}" fontSize="16" />
Unfortunately, this doesn't seem to work. The fontSize stays at 11. How can I override the external CSS to resize the buttons in my ButtonBar?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要设置buttonStyleName属性,所以
you need to set the buttonStyleName property, so
只是来自 Flex 文档的猜测。 ..
Just a guess from the Flex documentation...