编写 HTML 时是否允许(在 google mirror api 中)使用任何 CSS 代码,例如:
<h1 style="color:#ffaa00;font-family:times;">
启用自定义颜色或网络字体?
在操场上它可以工作,但我不确定它是否真的可以在谷歌玻璃上工作。
或者只是允许预设的 “base-style.css” 。
复制下面的代码。
去游乐场!
使用“Chrome-Browser” 并将输入从“ JSON 切换为 HTML ”
查看这个工作示例。
<article>
<section>
<p class="text-auto-size">This <em class="yellow">paragraph</em>
is base-style-css.<br>
This <strong style="color:#ffaa00;font-family:times;">HTML</strong>
is custom style css.<br>
enabled with <_strong style="color:#ffaa00;">
</p>
</section>
</article>