HTML5如何在文章标签中放置背景色

时间:2019-07-10 13:36:04

标签: html article

我想学习如何创建带有标题背景的文章

<article>
   <h1 background-color: green;> Title </h1> 
</article>

我想知道如何创建文章。顺便说一下,我正在使用wordpress,我应该需要在代码级完成此操作。

3 个答案:

答案 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>