`
SilverRing
  • 浏览: 71057 次
社区版块
存档分类
最新评论

[Flex3] CSS type selectors are not supported in components XXX

    博客分类:
  • Flex
阅读更多
This warning probably means CSS type selectors are defined or the css file is referenced in a custom component.

Solution one:

Move the type selectors definition into the main application.

Solution two:

Replace the type selectors with class selectors.

		Label {
			font-weight: 'bold';
		}


replaced with

		.label {
			font-weight: 'bold';
		}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics