Facebook Instant Articles 内联样式
Facebook Instant Articles inline styles
我可以为 Facebook Instant Articles 文章添加内联样式吗?我在他们的 documentation for design guides 上找过,他们没有具体说明我们是否可以。我知道 Google AMP,我们无法使用它,我不确定这里是否同样适用。
看来我们不能添加内联样式,但是,我们可以用 <iframe>
包装这些元素并将内联样式应用于这些元素,FB 会选择它。例如:
<iframe> <div style="background: red; color: red">Text on Red</div></iframe>
https://developers.facebook.com/docs/instant-articles/sdk/transformer-rules#rule-context
那里作为评论说明
For example, to render text bold in an Instant Article, the tag must be used. But if your content makes use of as a means to stylize text bold, you would find that your source markup is valid HTML, but ultimately is not valid Instant Articles markup.
所以 <strong>
生成粗体文本,<em>
生成斜体。但似乎还不止于此
我可以为 Facebook Instant Articles 文章添加内联样式吗?我在他们的 documentation for design guides 上找过,他们没有具体说明我们是否可以。我知道 Google AMP,我们无法使用它,我不确定这里是否同样适用。
看来我们不能添加内联样式,但是,我们可以用 <iframe>
包装这些元素并将内联样式应用于这些元素,FB 会选择它。例如:
<iframe> <div style="background: red; color: red">Text on Red</div></iframe>
https://developers.facebook.com/docs/instant-articles/sdk/transformer-rules#rule-context
那里作为评论说明
For example, to render text bold in an Instant Article, the tag must be used. But if your content makes use of as a means to stylize text bold, you would find that your source markup is valid HTML, but ultimately is not valid Instant Articles markup.
所以 <strong>
生成粗体文本,<em>
生成斜体。但似乎还不止于此