我想学习如何创建带有标题背景的文章
<article>
<h1 background-color: green;> Title </h1>
</article>
我想知道如何创建文章。顺便说一下,我正在使用wordpress,我应该需要在代码级完成此操作。
答案 0 :(得分:2)
您需要将样式放在style
属性中
<article>
<h1 style="background-color: green;"> Title </h1>
</article>
或
<article style="background-color: green;">
<h1> Title </h1>
</article>
答案 1 :(得分:1)
您是否尝试过:...?
<article>
<h1 style="background-color: green"> Title </h1>
</article>
答案 2 :(得分:1)
应该是
serviceProvider.GetService<BlobStorageRepository>()
请转到该网站
https://www.w3schools.com/html/default.asp
并学习<article>
<h1 style='background-color: green;' > Title </h1>
</article>