如何从 Flex 中的 TextField 中删除默认 CSS?
我正在与它进行认真的斗争。我需要将 TextField 组件的 defaultTextFormat 设置为我自己的值。我不能这样做,因为该组件不使用 defaultTextFormat(如果有的话)它已经使用 CSS 样式表中的格式,如此处所述 http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html#defaultTextFormat< /a>:
注意:如果样式表应用于文本字段,则无法设置此属性。
我的问题是:有没有办法删除文本字段的 CSS 属性?我怎样才能“覆盖”这个样式表?
我希望能够在不覆盖 CSS 文件或编写自己的 CSS 文件的情况下做到这一点。
I'm in serious fight with it. I need to set the defaultTextFormat of a TextField component to my own values. I can't do that since the component does not use the defaultTextFormat if it has it is already using the format from CSS stylesheet as said here http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/text/TextField.html#defaultTextFormat :
Note: You can't set this property if a style sheet is applied to the text field.
My question is: is there a way to remove the CSS propertis of the text field? How could I "override" this style sheet ??
I want be able to do that without overwrite the CSS file or write my own.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将自己的 CSS 属性赋予组件,则默认属性将自动被覆盖。
谢谢
If you give your own CSS properties to a component, the default properties will automatically get overridden.
Thanks