使用 CSS 设置元素的背景色
若要设置元素的背景色,请使用 background-color 属性。
示例
您可以尝试运行以下代码,了解如何使用 background-color 属性
<html> <head> <body> <p style = "background-color:blue;"> This text has a blue background color.</p> </body> </head> <html>
广告
若要设置元素的背景色,请使用 background-color 属性。
您可以尝试运行以下代码,了解如何使用 background-color 属性
<html> <head> <body> <p style = "background-color:blue;"> This text has a blue background color.</p> </body> </head> <html>