还有其他方法可以在section标签中添加背景颜色吗?除了使用之外body {background-color: blue;},还有哪些方法可以将背景颜色添加到部分中?
我试图添加这样的部分背景颜色:
<!DOCTYPE html>
<html>
<head>
<title>Testing</title>
<style>
#ABC {
background-color: blue;
}
</style>
</head>
<body>
<section id="ABC">
</section>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
我的浏览器没有显示颜色.