在 OpenSocial 小工具模块 XML 中包含远程 CSS 样式表的正确方法
在 OpenSocial 小工具模块 XML 中包含远程 CSS 样式表的正确/推荐方法是什么?
我希望我们可以使用远程CSS(以启用客户端缓存等),以便我们可以摆脱内联样式...
链接标签是否应该包含在下面的html类型内容标签的CDATA部分中,或者您有什么建议?
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="My App title">
<Require feature="opensocial-0.8" />
</ModulePrefs>
<Content type="url" view="mobile" href="somemobileplace" />
<Content type="html">
<![CDATA[
<div>some html content</div>
]]>
</Content>
</Module>
What is the correct/recommended way of including remote CSS style sheet in OpenSocial gadget module XML?
I hope we CAN use remote CSS (to enable client caching etc), so that we can get rid of inline styling...
Should a link tag be included in the CDATA section of the html typed Content tag below, or what are your suggestions?
<?xml version="1.0" encoding="UTF-8" ?>
<Module>
<ModulePrefs title="My App title">
<Require feature="opensocial-0.8" />
</ModulePrefs>
<Content type="url" view="mobile" href="somemobileplace" />
<Content type="html">
<![CDATA[
<div>some html content</div>
]]>
</Content>
</Module>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我得到回复说可以在正文部分包含远程 js 脚本文件、样式表等内容。
我还在一本开放社交书中读到,这些东西一旦被容器显示,实际上就会被移动到标题部分。
I got a reply that it's ok to include things like remote js script files, style sheets in the body section.
I also read in an Open Social book that these things actually get moved into the header section once displayed by the container.