使用 CSS 设置背景色


要使用 CSS 设置背景色,请使用 background-color 属性。

示例

我们现在来看一个示例 -

 在线演示

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   text-decoration: overline underline;
   background-color: red;
}
</style>
</head>
<body>
<h1>Details</h1>
<p class="demo">Examination Center near ABC College.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

输出

示例

我们现在来看另一个示例 -

 在线演示

<!DOCTYPE html>
<html>
<head>
<style>
.demo {
   text-decoration: overline underline;
}
</style>
</head>
<body style="background-color: orange;color: white;">
<h1>Details</h1>
<p class="demo">Examination Center near ABC College.</p>
<p class="demo2">Exam begins at 9AM.</p>
</body>
</html>

输出

更新于:2019-12-30

161 次浏览

开启您的 职业生涯

通过完成课程获得认证

开始
广告